@charset "UTF-8";
@font-face {
    font-family: 'notosans';
    src: url(../fonts/notosans/NotoSansKR-Regular.woff2) format("woff2");
    font-weight: 400;
}

@font-face {
    font-family: 'notosans';
    src: url(../fonts/notosans/NotoSansKR-Medium.woff2) format("woff2");
    font-weight: 500;
}

@font-face {
    font-family: 'notosans';
    src: url(../fonts/notosans/NotoSansKR-Bold.woff2) format("woff2");
    font-weight: 700;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}

input[type='text'],
input[type='password'],
input[type='number'],
input[type='email'] {
    background: #fff;
}

.pt0 {
    padding-top: 0 !important;
}

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

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

.mt0 {
    margin-top: 0 !important;
}

.mt2 {
    margin-top: 2px !important;
}

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

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

.mt10 {
    margin-top: 10px !important;
}

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

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

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

.mt30 {
    margin-top: 30px !important;
}

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

.mt50 {
    margin-top: 50px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt70 {
    margin-top: 70px !important;
}

.mt80 {
    margin-top: 80px !important;
}

.mt100 {
    margin-top: 100px !important;
}

img {
    max-width: 100%;
}

.agl {
    text-align: left !important;
}

.agc {
    text-align: center !important;
}

.agr {
    text-align: right !important;
}

.fcB100 {
    color: #4130df !important;
}

.fcR100 {
    color: #ff0000 !important;
}

.fcR70 {
    color: #ff4d4d !important;
}

.fcG100 {
    color: #000 !important;
}

.fcG60 {
    color: #666 !important;
}

.fcG50 {
    color: #909090 !important;
}

.selGrey {
    color: #909090 !important;
}

.fs13 {
    font-size: 13px !important;
    line-height: 23px !important;
}

.fw500 {
    font-weight: 500 !important;
}

.fw700 {
    font-weight: 700 !important;
}

body,
button,
input,
select,
table,
textarea {
    font-family: 'notosans', sans-serif;
}

.btnTopWrap {
    z-index: 30;
    position: sticky;
    bottom: 0;
    height: 0;
    opacity: 0;
    transition: opacity 300ms ease-in-out 0s;
}

.btnTopWrap .btnTop {
    position: absolute;
    height: 72px;
    width: 72px;
    bottom: 20px;
    right: 0;
    border-radius: 50%;
    border: 1px solid #e1e1e1;
    opacity: 0.7;
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
}

.btnTopWrap .btnTop:before {
    content: '';
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    height: 24px;
    width: 24px;
    background: url("../img/godo2023/btn_top.svg") no-repeat 50% 50%;
}

.btnTopWrap.show {
    opacity: 1;
}

.starRateWrap {
    display: inline-flex;
    align-items: center;
    column-gap: 4px;
    height: 20px;
}

.starRateWrap .starRate {
    display: inline-block;
    width: 100px;
    height: 20px;
    background: url("../img/godo2023/ico_star_off.svg") repeat-x;
}

.starRateWrap .starRate > span {
    display: block;
    height: 100%;
    background: url("../img/godo2023/ico_star_on.svg") repeat-x -2px -2px;
}

.starRateWrap .txt {
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    color: #909090;
}

.prodColorPicker {
    margin-top: 24px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.prodColorPicker label {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 50px;
    height: 50px;
    border-radius: 50%;
}

.prodColorPicker label input[type='radio'] {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.prodColorPicker label .colorPicker {
    position: relative;
    margin: 0;
    height: 42px;
    width: 42px;
    text-indent: -9999px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.07);
    box-sizing: border-box;
}

.prodColorPicker label .colorPicker.white::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 38px;
    height: 38px;
    border: 2px solid #000;
    border-radius: 50%;
    opacity: 0.07;
    display: none;
}

.prodColorPicker label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    border-radius: 50%;
    border: 2px solid transparent;
}

.prodColorPicker label.checked {
    box-shadow: 0px 2px 4px 0px rgba(65, 48, 223, 0.18);
}

.prodColorPicker label.checked:before {
    border-color: #4130df;
}

.prodColorPicker label:has(:checked) {
    box-shadow: 0px 2px 4px 0px rgba(65, 48, 223, 0.18);
}

.prodColorPicker label:has(:checked):before {
    border-color: #4130df;
}

.prodColorPicker label.disabled:before {
    top: 4px;
    left: 4px;
    width: 42px;
    height: 42px;
    opacity: 0.4;
    border-color: #000;
}

.prodColorPicker label.disabled .colorPicker {
    opacity: 0.4;
}

.prodColorPicker label.disabled:after {
    content: '';
    position: absolute;
    top: 4px;
    left: calc(50% - 1px);
    height: 42px;
    width: 2px;
    background: #000;
    transform: rotate(45deg);
    opacity: 0.2;
}

.prodColorPicker label:has(:disabled):before {
    top: 4px;
    left: 4px;
    width: 42px;
    height: 42px;
    opacity: 0.4;
    border-color: #000;
}

.prodColorPicker label:has(:disabled) .colorPicker {
    opacity: 0.4;
}

.prodColorPicker label:has(:disabled):after {
    content: '';
    position: absolute;
    top: 4px;
    left: calc(50% - 1px);
    width: 2px;
    height: 42px;
    background: #000;
    transform: rotate(45deg);
    opacity: 0.2;
}

.prodColorPicker label.checked {
    box-shadow: 0px 2px 4px 0px rgba(65, 48, 223, 0.18);
}

.prodColorPicker label.checked:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-color: #4130df;
    opacity: 1;
}

.prodColorPicker label.checked:after {
    content: '';
    top: 0;
    height: 100%;
    background: #4130df;
    opacity: 1;
}

.prodColorPicker label:has(:checked) {
    box-shadow: 0px 2px 4px 0px rgba(65, 48, 223, 0.18);
}

.prodColorPicker label:has(:checked):before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-color: #4130df;
    opacity: 1;
}

.prodColorPicker label:has(:checked):after {
    content: '';
    top: 0;
    height: 100%;
    background: #4130df;
    opacity: 1;
}

.pageTitle {
    border-bottom: 1px solid #efefef;
}

.pageTitle .lGrid {
    display: flex;
    align-items: center;
    min-height: 200px;
}

.pageTitle .lGrid h2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 8px;
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
}

.pageTitle .lGrid h2 span {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
}

.pageTitle .lGrid h2 span.desc {
    font-size: 16px;
    line-height: 26px;
    color: #909090;
}

.pageTitle .lGrid h2.cnt {
    margin: 0 auto;
}

.pageTitle .lGrid .btnSkip {
    position: relative;
    width: 120px;
    height: 40px;
    box-sizing: border-box;
    padding: 4px 0 0 21px;
    margin-left: auto;
    color: #909090;
    border-bottom: 1px solid #bfbfbf;
}

.pageTitle .lGrid .btnSkip:after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    height: 1px;
    width: 26px;
    transform-origin: 100% 100%;
    transform: rotate(46deg);
    background: #bfbfbf;
}

.pageTitle.prodHeader {
    z-index: 16;
    position: sticky;
    top: 185px;
    left: 0;
    width: 100%;
    transition: top 0.3s linear;
    border: none;
    min-height: 160px;
    pointer-events: none;
    /* 2023-10-11 스크롤 업 이벤트 해제 */
}

.pageTitle.prodHeader .inner {
    pointer-events: auto;
    background: #fff;
}

.pageTitle.prodHeader .lGrid {
    min-height: 158px;
    column-gap: 8px;
    transition: all 0.2s ease-in-out;
}

.pageTitle.prodHeader .lGrid .img {
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 0;
    overflow: hidden;
}

.pageTitle.prodHeader .lGrid .img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.pageTitle.prodHeader .lGrid .info > h2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 760px;
}

.pageTitle.prodHeader .lGrid .info .expert {
    transition: all 0.2s ease-in-out;
    height: 24px;
    overflow: hidden;
    margin-top: 13px;
    display: flex;
    column-gap: 12px;
    align-items: center;
}

.pageTitle.prodHeader .lGrid .info .expert .flag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    color: #fff;
    background: #4130df;
}

.pageTitle.prodHeader .lGrid .info .prodInfoText {
    transition: all 0.2s ease-in-out;
    overflow: hidden;
    height: 0;
    margin-top: 0;
    font-size: 12px;
    line-height: 18px;
}

.pageTitle.prodHeader .lGrid .prodPrice {
    width: 320px;
    margin-left: auto;
}

.pageTitle.prodHeader .lGrid .prodPrice .price {
    font-size: 18px;
    line-height: 28px;
    transition: all 0.2s ease-in-out;
}

.pageTitle.prodHeader .lGrid .prodPrice .btnShare {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
}

.pageTitle.prodHeader .lGrid .prodPrice .btnShare img {
    vertical-align: top;
}

.pageTitle.prodHeader .lGrid .prodPrice .btnWrap {
    transition: all 0.2s ease-in-out;
    margin-top: 20px;
    column-gap: 8px;
}

.pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting {
    flex: 1 0 50%;
    position: relative;
}

.pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .btnSt, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting a, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .cart-btn, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .group-total-btn > a, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .btn-primary, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .btn-semi, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .btn-outline-primary {
    width: 100%;
    min-width: auto;
}

.pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .btnSt:focus, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:focus, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting a:focus, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .my-cart-tbl .cart-btn:focus, body .wrap.godo2023 .my-cart-tbl .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .cart-btn:focus, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a:focus, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .group-total-btn > a:focus, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .modal .btn-primary:focus, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .btn-primary:focus, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .modal .btn-semi:focus, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .btn-semi:focus, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .modal .btn-outline-primary:focus, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .btn-outline-primary:focus {
    background: #fff;
}

.pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .btnSt.on, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.on, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting a.on, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .my-cart-tbl .on.cart-btn, body .wrap.godo2023 .my-cart-tbl .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .on.cart-btn, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.on, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .group-total-btn > a.on, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .modal .on.btn-primary, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .on.btn-primary, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .modal .on.btn-semi, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .on.btn-semi, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .modal .on.btn-outline-primary, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .on.btn-outline-primary, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .btnSt:active, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:active, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting a:active, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .my-cart-tbl .cart-btn:active, body .wrap.godo2023 .my-cart-tbl .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .cart-btn:active, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a:active, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .group-total-btn > a:active, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .modal .btn-primary:active, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .btn-primary:active, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .modal .btn-semi:active, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .btn-semi:active, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting body .wrap.godo2023 .modal .btn-outline-primary:active, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .btn-outline-primary:active {
    color: #4130df;
    border-color: #4130df;
    background: #efeeff;
}

.pageTitle.prodHeader .lGrid .prodPrice .btnWrap .consulting .consultingList {
    top: calc(100% + 8px);
    bottom: auto;
}

.pageTitle.prodHeader .lGrid .prodPrice .btnWrap .btnSt, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .pageTitle.prodHeader .lGrid .prodPrice .btnWrap a, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .cart-btn, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .group-total-btn > a, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .btn-primary, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .btn-semi, .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .btn-outline-primary {
    white-space: nowrap;
    padding: 0 12px;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
    height: 54px;
    flex: 1 0 50%;
}

.scroll-down .pageTitle.prodHeader {
    top: 51px;
}

.scroll-down .pageTitle.prodHeader .lGrid {
    min-height: 124px;
}

.scroll-down .pageTitle.prodHeader .lGrid .img {
    width: 80px;
}

.scroll-down .pageTitle.prodHeader .lGrid .info h2 {
    max-width: 680px;
}

.scroll-down .pageTitle.prodHeader .lGrid .info .expert {
    height: 0;
    margin-top: 0;
}

.scroll-down .pageTitle.prodHeader .lGrid .info .prodInfoText {
    margin-top: 12px;
    height: 18px;
}

.scroll-down .pageTitle.prodHeader .lGrid .prodPrice .price {
    font-size: 14px;
    line-height: 24px;
}

.scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap {
    margin-top: 12px;
}

.scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .btnSt, .scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap a, .scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .cart-btn, .scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .group-total-btn > a, .scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .btn-primary, .scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .btn-semi, .scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .scroll-down .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .btn-outline-primary {
    height: 48px;
}

.scroll-up .pageTitle.prodHeader {
    top: 51px;
}

.scroll-up .pageTitle.prodHeader .lGrid {
    min-height: 124px;
}

.scroll-up .pageTitle.prodHeader .lGrid .img {
    width: 80px;
}

.scroll-up .pageTitle.prodHeader .lGrid .info h2 {
    max-width: 680px;
}

.scroll-up .pageTitle.prodHeader .lGrid .info .expert {
    height: 0;
    margin-top: 0;
}

.scroll-up .pageTitle.prodHeader .lGrid .info .prodInfoText {
    margin-top: 12px;
    height: 18px;
}

.scroll-up .pageTitle.prodHeader .lGrid .prodPrice .price {
    font-size: 14px;
    line-height: 24px;
}

.scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap {
    margin-top: 12px;
}

.scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .btnSt, .scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap a, .scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .cart-btn, .scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .group-total-btn > a, .scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .btn-primary, .scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .btn-semi, .scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .scroll-up .pageTitle.prodHeader .lGrid .prodPrice .btnWrap .btn-outline-primary {
    height: 48px;
}

.prodDefaultPage.scroll-up .main-header .main-header__inner {
    top: -134px !important;
}

.prodDefaultPage.scroll-up .wideTab {
    top: 115px !important;
}

.prodDefaultPage.scroll-up .prodHeaderBorder {
    top: 175px !important;
}

.prodDefaultPage.scroll-up.godoScrT .main-header .main-header__inner {
    top: 0 !important;
}

.prodDefaultPage.scroll-up.godoScrT .wideTab {
    top: 0 !important;
}

.prodDefaultPage.scroll-up.godoScrT .prodHeaderBorder {
    top: 175px !important;
}

.prodDefaultPage.scroll-up.godoScrT .pageTitle.prodHeader .lGrid {
    min-height: 158px;
}

.prodDefaultPage.scroll-up.godoScrT .pageTitle.prodHeader .lGrid .img {
    width: 0;
}

.prodDefaultPage.scroll-up.godoScrT .pageTitle.prodHeader .lGrid .info h2 {
    max-width: 680px;
}

.prodDefaultPage.scroll-up.godoScrT .pageTitle.prodHeader .lGrid .info .expert {
    height: 24px;
    margin-top: 13px;
}

.prodDefaultPage.scroll-up.godoScrT .pageTitle.prodHeader .lGrid .info .prodInfoText {
    margin-top: 0;
    height: 0;
}

.prodDefaultPage.godoScrT .pageTitle.prodHeader .lGrid .info > h2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 760px !important;
}

.prodDefaultPage.godoScrT .prodPrice .price {
    font-size: 18px !important;
    line-height: 28px !important;
}

.prodDefaultPage.godoScrT .prodPrice .btnWrap {
    margin-top: 20px !important;
}

.prodDefaultPage.godoScrT .prodPrice .btnWrap .btnSt, .prodDefaultPage.godoScrT .prodPrice .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .prodDefaultPage.godoScrT .prodPrice .btnWrap a, .prodDefaultPage.godoScrT .prodPrice .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .prodDefaultPage.godoScrT .prodPrice .btnWrap .cart-btn, .prodDefaultPage.godoScrT .prodPrice .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .prodDefaultPage.godoScrT .prodPrice .btnWrap .group-total-btn > a, .prodDefaultPage.godoScrT .prodPrice .btnWrap body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .prodDefaultPage.godoScrT .prodPrice .btnWrap .btn-primary, .prodDefaultPage.godoScrT .prodPrice .btnWrap body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .prodDefaultPage.godoScrT .prodPrice .btnWrap .btn-semi, .prodDefaultPage.godoScrT .prodPrice .btnWrap body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .prodDefaultPage.godoScrT .prodPrice .btnWrap .btn-outline-primary {
    height: 54px !important;
}

/* 2023-10-11 스크롤 업 이벤트 해제 끝 */
.consultingWrap {
    z-index: 200;
    position: fixed;
    height: 0;
    right: 0;
    bottom: 0;
}

.consultingWrap .lGrid {
    position: relative;
    height: 0;
}

.consultingWrap .consulting {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.consultingWrap .consulting .btnSt, .consultingWrap .consulting body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .consultingWrap .consulting a, .consultingWrap .consulting body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .consultingWrap .consulting .cart-btn, .consultingWrap .consulting body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .consultingWrap .consulting .group-total-btn > a, .consultingWrap .consulting body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .consultingWrap .consulting .btn-primary, .consultingWrap .consulting body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .consultingWrap .consulting .btn-semi, .consultingWrap .consulting body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .consultingWrap .consulting .btn-outline-primary {
    width: 160px;
    height: 70px;
    border-radius: 35px;
    box-shadow: 0 2px 9px 0 rgba(65, 48, 223, 0.1);
}

.consultingWrap .consulting .btnSt:focus, .consultingWrap .consulting body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:focus, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .consultingWrap .consulting a:focus, .consultingWrap .consulting body .wrap.godo2023 .my-cart-tbl .cart-btn:focus, body .wrap.godo2023 .my-cart-tbl .consultingWrap .consulting .cart-btn:focus, .consultingWrap .consulting body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a:focus, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .consultingWrap .consulting .group-total-btn > a:focus, .consultingWrap .consulting body .wrap.godo2023 .modal .btn-primary:focus, body .wrap.godo2023 .modal .consultingWrap .consulting .btn-primary:focus, .consultingWrap .consulting body .wrap.godo2023 .modal .btn-semi:focus, body .wrap.godo2023 .modal .consultingWrap .consulting .btn-semi:focus, .consultingWrap .consulting body .wrap.godo2023 .modal .btn-outline-primary:focus, body .wrap.godo2023 .modal .consultingWrap .consulting .btn-outline-primary:focus {
    background: #fff;
}

.consultingWrap .consulting .btnSt.on, .consultingWrap .consulting body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.on, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .consultingWrap .consulting a.on, .consultingWrap .consulting body .wrap.godo2023 .my-cart-tbl .on.cart-btn, body .wrap.godo2023 .my-cart-tbl .consultingWrap .consulting .on.cart-btn, .consultingWrap .consulting body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.on, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .consultingWrap .consulting .group-total-btn > a.on, .consultingWrap .consulting body .wrap.godo2023 .modal .on.btn-primary, body .wrap.godo2023 .modal .consultingWrap .consulting .on.btn-primary, .consultingWrap .consulting body .wrap.godo2023 .modal .on.btn-semi, body .wrap.godo2023 .modal .consultingWrap .consulting .on.btn-semi, .consultingWrap .consulting body .wrap.godo2023 .modal .on.btn-outline-primary, body .wrap.godo2023 .modal .consultingWrap .consulting .on.btn-outline-primary, .consultingWrap .consulting .btnSt:active, .consultingWrap .consulting body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:active, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .consultingWrap .consulting a:active, .consultingWrap .consulting body .wrap.godo2023 .my-cart-tbl .cart-btn:active, body .wrap.godo2023 .my-cart-tbl .consultingWrap .consulting .cart-btn:active, .consultingWrap .consulting body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a:active, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .consultingWrap .consulting .group-total-btn > a:active, .consultingWrap .consulting body .wrap.godo2023 .modal .btn-primary:active, body .wrap.godo2023 .modal .consultingWrap .consulting .btn-primary:active, .consultingWrap .consulting body .wrap.godo2023 .modal .btn-semi:active, body .wrap.godo2023 .modal .consultingWrap .consulting .btn-semi:active, .consultingWrap .consulting body .wrap.godo2023 .modal .btn-outline-primary:active, body .wrap.godo2023 .modal .consultingWrap .consulting .btn-outline-primary:active {
    color: #4130df;
    border-color: #4130df;
    background: #efeeff;
}

.consultingWrap .consulting .btnSt:before, .consultingWrap .consulting body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:before, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .consultingWrap .consulting a:before, .consultingWrap .consulting body .wrap.godo2023 .my-cart-tbl .cart-btn:before, body .wrap.godo2023 .my-cart-tbl .consultingWrap .consulting .cart-btn:before, .consultingWrap .consulting body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a:before, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .consultingWrap .consulting .group-total-btn > a:before, .consultingWrap .consulting body .wrap.godo2023 .modal .btn-primary:before, body .wrap.godo2023 .modal .consultingWrap .consulting .btn-primary:before, .consultingWrap .consulting body .wrap.godo2023 .modal .btn-semi:before, body .wrap.godo2023 .modal .consultingWrap .consulting .btn-semi:before, .consultingWrap .consulting body .wrap.godo2023 .modal .btn-outline-primary:before, body .wrap.godo2023 .modal .consultingWrap .consulting .btn-outline-primary:before {
    content: '';
    height: 40px;
    width: 40px;
    display: inline-block;
    background: url("../img/godo2023/ico_consulting.svg") no-repeat 50% 50%;
}

.consultingWrap .consulting .consultingList:before {
    content: '';
    position: absolute;
    top: 100%;
    left: calc(50% - 9px);
    width: 18px;
    height: 13px;
    background: url("../img/godo2023/ico_consulting_tail.svg") no-repeat 50% calc(50% - 1px);
}

.consultingList {
    display: none;
    position: absolute;
    bottom: calc(100% + 23px);
    left: 0;
    width: 100%;
    padding: 7px 20px 8px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #4130df;
    filter: drop-shadow(5px 5px 8px rgba(0, 0, 0, 0.05));
}

.consultingList li {
    padding: 13px 0 12px;
    text-align: center;
    border-bottom: 1px solid #efefef;
}

.consultingList li button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #666;
}

.consultingList li button i {
    display: block;
    height: 24px;
    width: 24px;
}

.consultingList li button i.kakao {
    background: url("../img/godo2023/ico_prod_kakao.svg") no-repeat 50% 50%;
}

.consultingList li button i.bubble {
    background: url("../img/godo2023/ico_prod_bot.svg") no-repeat 50% 50%;
}

.consultingList li button i.phone {
    background: url("../img/godo2023/ico_prod_phone.svg") no-repeat 50% 50%;
}

.consultingList li:last-child {
    border-bottom: none;
}

.consultingList li + li {
    position: relative;
}

.consultingList li + li:before {
    display: none;
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    height: 1px;
    width: 100%;
    background: #efefef;
}

.prodHeaderBorder {
    z-index: 10;
    position: sticky;
    top: 343px;
    display: block;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    background: #efefef;
    transition: top 0.3s linear;
}

.scroll-down .prodHeaderBorder {
    top: 175px;
}

.pageContents {
    padding: 60px 0 120px;
}

.pageContents:before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-top: -1px;
    flex: 0 0 0;
}

.lGrid {
    width: 1180px;
    margin: 0 auto;
}

.pageWrap {
    padding: 60px 0 120px;
}

.columnWrap, .modalContent .columnWrap {
    display: flex;
}

.columnWrap .columnLeft {
    flex: 0 0 auto;
    box-sizing: border-box;
    width: 780px;
    padding: 60px 60px 120px 0;
}

.columnWrap .columnRight {
    flex: 0 0 auto;
    box-sizing: border-box;
    width: 400px;
    padding-left: 60px;
    border-left: 1px solid #efefef;
}

.columnWrap .columnRight .stickyBox {
    position: sticky;
    width: 100%;
    left: 0;
    top: 52px;
    padding: 40px 0 120px;
    transition: top 0.3s linear;
}

.scroll-up .columnWrap .columnRight .stickyBox {
    top: 186px;
}

html.modalOpen {
    overflow: hidden;
    overscroll-behavior: none;
}

:root {
    --modal-speed: 200ms;
}

#modalWrap {
    position: relative;
    z-index: 10100;
}

#modalWrap .modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    min-width: 1180px;
    display: none;
    justify-content: center;
    align-items: center;
}

#modalWrap .modal .modalItem {
    position: relative;
    display: flex;
    min-width: 700px;
    width: 700px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    font-family: 'notosans', sans-serif !important;
}

#modalWrap .modal .modalItem > .btnModalClose {
    z-index: 2;
    position: absolute;
    top: 40px;
    right: 40px;
    height: 40px;
    width: 40px;
    text-indent: -9999px;
    overflow: hidden;
    background: url("../img/godo2023/ico_modal_close.svg") no-repeat 50% 50%;
}

#modalWrap .modal .modalItem > .btnModalPrev {
    position: absolute;
    top: calc(50% - 30px);
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #efefef;
    border-radius: 50%;
    filter: drop-shadow(0 2px 9px rgba(0, 0, 0, 0.08));
    box-sizing: border-box;
    z-index: 2;
}

#modalWrap .modal .modalItem > .btnModalPrev::before {
    content: '';
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 4px);
    height: 15px;
    width: 15px;
    border: solid #000;
    border-width: 1px 0 0 1px;
    transition: border-color 200ms ease-in-out 0s;
    transform: rotate(-45deg);
}

#modalWrap .modal .modalItem > .btnModalPrev:disabled::before {
    border: solid #909090;
    border-width: 1px 0 0 1px;
}

#modalWrap .modal .modalItem > .btnModalNext {
    position: absolute;
    top: calc(50% - 30px);
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #efefef;
    border-radius: 50%;
    filter: drop-shadow(0 2px 9px rgba(0, 0, 0, 0.08));
    box-sizing: border-box;
    z-index: 2;
}

#modalWrap .modal .modalItem > .btnModalNext::before {
    content: '';
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 10px);
    height: 15px;
    width: 15px;
    border: 1px solid #000;
    border-width: 1px 0 0 1px;
    transition: border-color 200ms ease-in-out 0s;
    transform: rotate(135deg);
}

#modalWrap .modal .modalItem > .btnModalNext:disabled::before {
    border: 1px solid #909090;
    border-width: 1px 0 0 1px;
}

#modalWrap .modal .modalInner {
    flex: 0 0 100%;
    z-index: 2;
    position: relative;
    width: 100%;
    min-width: 480px;
    box-sizing: border-box;
    border-radius: 12px;
    padding: 20px 0;
    max-height: calc(100vh - 100px);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: transform 300ms ease-in-out 0s;
}

#modalWrap .modal .modalInner .modalHeader {
    padding: 20px 40px;
    font-size: 26px;
    line-height: 40px;
    color: #000;
    flex: 0 0 auto;
}

#modalWrap .modal .modalInner .modalHeader.time {
    display: flex;
    justify-content: space-between;
    padding: 20px 120px 20px 40px;
}

#modalWrap .modal .modalInner .modalHeader.time .sessionTime {
    display: block;
}

#modalWrap .modal .modalInner .modalContent {
    flex: 1 1 auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 20px 40px 40px;
}

#modalWrap .modal .modalInner .modalContent:before {
    content: '';
    width: 100%;
    height: 1px;
    margin-top: -1px;
}

#modalWrap .modal .modalInner .modalContent > .imgSwiper,
#modalWrap .modal .modalInner .modalContent > .searchSticky,
#modalWrap .modal .modalInner .modalContent > .comparisonSticky {
    min-width: 620px;
    box-sizing: border-box;
}

#modalWrap .modal .modalInner .modalContent > .imgSwiper + .noticeWrap,
#modalWrap .modal .modalInner .modalContent > .searchSticky + .noticeWrap,
#modalWrap .modal .modalInner .modalContent > .comparisonSticky + .noticeWrap {
    min-width: 620px;
    box-sizing: border-box;
}

#modalWrap .modal .modalInner .modalFooter {
    padding: 20px 40px 0;
    flex: 0 0 auto;
}

#modalWrap .modal .modalInner .modalFooter .btnWrap {
    margin-top: 0;
}

#modalWrap .modal .modalInner .modalFooter .btnWrap .btnSt, #modalWrap .modal .modalInner .modalFooter .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap #modalWrap .modal .modalInner .modalFooter .btnWrap a, #modalWrap .modal .modalInner .modalFooter .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl #modalWrap .modal .modalInner .modalFooter .btnWrap .cart-btn, #modalWrap .modal .modalInner .modalFooter .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc #modalWrap .modal .modalInner .modalFooter .btnWrap .group-total-btn > a, #modalWrap body .wrap.godo2023 .modal .modalInner .modalFooter .btnWrap .btn-primary, body .wrap.godo2023 #modalWrap .modal .modalInner .modalFooter .btnWrap .btn-primary, #modalWrap body .wrap.godo2023 .modal .modalInner .modalFooter .btnWrap .btn-semi, body .wrap.godo2023 #modalWrap .modal .modalInner .modalFooter .btnWrap .btn-semi, #modalWrap body .wrap.godo2023 .modal .modalInner .modalFooter .btnWrap .btn-outline-primary, body .wrap.godo2023 #modalWrap .modal .modalInner .modalFooter .btnWrap .btn-outline-primary {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    height: 54px;
    padding: 13px 20px;
    min-width: 200px;
}

#modalWrap .modal .modalInner:before {
    content: '';
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    transition: background-color var(--modal-speed) ease-in-out 0s;
    background: rgba(0, 0, 0, 0);
}

#modalWrap .modal .modalDimmed {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

#modalWrap .modal.open {
    display: flex;
}

#modalWrap .modal.page .modalHeader {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

#modalWrap .modal.page .modalHeader .btnModalPrev {
    height: 24px;
    width: 24px;
    background: red;
    text-indent: -9999px;
    overflow: hidden;
    background: url("../img/godo2023/btn_modal_previco.svg") no-repeat 50% 50%;
}

#modalWrap .modal.page .modalInner {
    height: 700px;
}

#modalWrap .modal.page .modalInner:nth-child(n + 2) {
    position: absolute;
    top: 0;
    left: 100%;
}

#modalWrap .modal.page[data-active-page='2'] .modalInner[data-page='2'] {
    transform: translateX(-100%);
}

#modalWrap .modal.page[data-active-page='3'] .modalInner[data-page='3'] {
    transform: translateX(-100%);
}

#modalWrap .modal:not(:last-of-type) .modalInner:before {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

#modalWrap .modal.alert .modalItem {
    border-radius: 0;
    width: 480px;
    min-width: 480px;
}

#modalWrap .modal.alert .modalInner {
    padding: 15px 40px 40px;
    min-height: 320px;
}

#modalWrap .modal.alert .modalInner .modalHeader {
    padding: 20px 0;
    border-bottom: 1px solid #000;
}

#modalWrap .modal.alert .modalInner .modalContent {
    padding: 24px 0 0;
}

#modalWrap .modal.alert .modalInner .modalFooter {
    padding: 40px 0 0;
}

#modalWrap .modal.alert .modalInner .modalFooter .btnWrap {
    column-gap: 10px;
}

#modalWrap .modal.alert .modalInner .modalFooter .btnWrap .btnSt, #modalWrap .modal.alert .modalInner .modalFooter .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap #modalWrap .modal.alert .modalInner .modalFooter .btnWrap a, #modalWrap .modal.alert .modalInner .modalFooter .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl #modalWrap .modal.alert .modalInner .modalFooter .btnWrap .cart-btn, #modalWrap .modal.alert .modalInner .modalFooter .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc #modalWrap .modal.alert .modalInner .modalFooter .btnWrap .group-total-btn > a, #modalWrap body .wrap.godo2023 .modal.alert .modalInner .modalFooter .btnWrap .btn-primary, body .wrap.godo2023 #modalWrap .modal.alert .modalInner .modalFooter .btnWrap .btn-primary, #modalWrap body .wrap.godo2023 .modal.alert .modalInner .modalFooter .btnWrap .btn-semi, body .wrap.godo2023 #modalWrap .modal.alert .modalInner .modalFooter .btnWrap .btn-semi, #modalWrap body .wrap.godo2023 .modal.alert .modalInner .modalFooter .btnWrap .btn-outline-primary, body .wrap.godo2023 #modalWrap .modal.alert .modalInner .modalFooter .btnWrap .btn-outline-primary {
    height: 50px;
    max-width: 195px;
    border-radius: 0;
    flex: 1 1 50%;
}

#modalWrap .modal.alert .modalInner .alertText {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

#modalWrap .modal.alert .btnModalClose {
    top: 43px;
    right: 40px;
    height: 23px;
    width: 23px;
    background-image: url("../img/godo2023/ico_alert_close.svg");
}

#modalWrap .modal .modalTable {
    font-size: 13px;
    line-height: 23px;
    margin: 20px 0 0;
}

#modalWrap .modal .modalTable th,
#modalWrap .modal .modalTable td {
    border: 1px solid #e1e1e1;
}

#modalWrap .modal .modalTable th {
    width: 120px;
    font-weight: 400;
    padding: 12px 8px;
    color: #666;
    background-color: #f7f7f7;
    border-left: none;
    text-align: center;
}

#modalWrap .modal .modalTable td {
    padding: 12px 12px;
    color: #909090;
    border-right: none;
}

#modalWrap:after {
    content: '';
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    transition: background-color var(--modal-speed) ease-in-out 0s;
    background: rgba(0, 0, 0, 0);
}

#modalWrap.open:after {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

#modalWrap:has(.modal.open):after {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.modalTitle, .dt {
    display: block;
    font-size: 18px;
    line-height: 28px;
}

.modalTitle + .planList, .dt + .planList {
    margin-top: 20px;
}

[data-acd]:not(.open) [data-acd-cont] {
    display: none;
}

[data-tab-cont] {
    display: none;
}

.tooltip {
    position: relative;
    z-index: 15;
    display: inline-block;
    height: 100%;
    vertical-align: top;
}

.tooltip .ico {
    position: relative;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    height: 20px;
    width: 20px;
    margin-top: -4px;
    border: none;
    background: url("../img/godo2023/ico_tooltip.svg") no-repeat 50% 50%/contain;
}

.tooltip .ico.md {
    height: 24px;
    width: 24px;
    background: url("../img/godo2023/ico_md_tooltip.svg") no-repeat 50% 50%/contain;
}

.tooltip .bubble {
    display: none;
    z-index: 2;
    position: absolute;
    bottom: 100%;
    left: calc(50% - 5px);
    height: 0;
    width: 10px;
}

.tooltip .bubble:before {
    z-index: 2;
    position: absolute;
    top: -11px;
    left: -3px;
    content: '';
    display: block;
    height: 11px;
    width: 16px;
    background: url(../img/godo2023/ico_bubble.svg) no-repeat 50% 50%;
}

.tooltip .bubbleInner {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -210px;
    max-width: 420px;
    width: 420px;
    padding: 12px 32px 12px 12px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    line-height: 18px;
    border-radius: 6px;
    border: 1px solid #4130df;
    background: #f5f4fc;
    box-sizing: border-box;
    box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.05);
}

.tooltip .bubble .tit {
    display: block;
    font-weight: 700;
    color: #444;
}

.tooltip .bubble .tit + .list {
    margin-top: 4px;
}

.tooltip .bubble .list li {
    position: relative;
    padding-left: 8px;
    color: #666;
}

.tooltip .bubble .list li + li {
    margin-top: 4px;
}

.tooltip .bubble .list li:before {
    position: absolute;
    top: 8px;
    left: 0;
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 100%;
    background: #909090;
}

.tooltip .bubble .list + .tit {
    margin-top: 8px;
}

.tooltip .bubble .btnClose {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: url(../img/godo2023/ico_tooltip_close.svg) no-repeat 18px 12px;
    text-indent: -9999px;
    overflow: hidden;
}

.tooltip.down .bubble {
    bottom: auto;
    top: 100%;
}

.tooltip.down .bubble:before {
    top: 0;
    background-image: url("../img/godo2023/ico_bubble_down.svg");
}

.tooltip.down .bubbleInner {
    bottom: auto;
    top: 100%;
    margin-top: 10px;
}

.tooltip.left .bubbleInner {
    left: -20px;
    margin-left: 0;
}

.tooltip.right .bubbleInner {
    left: auto;
    right: -20px;
    margin-left: 0;
}

.tooltip.open .ico .bubble {
    display: block;
}

.moreTooltip {
    position: relative;
    z-index: 15;
    display: inline-block;
    height: 100%;
    vertical-align: top;
}

.moreTooltip .ico {
    position: relative;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    height: 20px;
    width: 20px;
    margin-top: -4px;
    border: none;
    background: url("../img/godo2023/ico_tooltip.svg") no-repeat 50% 50%/contain;
}

.moreTooltip .ico.md {
    height: 24px;
    width: 24px;
    background: url("../img/godo2023/ico_md_tooltip.svg") no-repeat 50% 50%/contain;
}

.moreTooltip .bubble {
    display: none;
    z-index: 2;
    position: absolute;
    bottom: 100%;
    left: calc(50% - 5px);
    height: 0;
    width: 10px;
}

.moreTooltip .bubble:before {
    z-index: 2;
    position: absolute;
    top: -11px;
    left: -3px;
    content: '';
    display: block;
    height: 11px;
    width: 16px;
    background: url(../img/godo2023/ico_bubble.svg) no-repeat 50% 50%;
}

.moreTooltip .bubbleInner {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -210px;
    max-width: 420px;
    width: 420px;
    padding: 12px 32px 12px 12px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    line-height: 18px;
    border-radius: 6px;
    border: 1px solid #4130df;
    background: #f5f4fc;
    box-sizing: border-box;
    box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.05);
}

.moreTooltip .bubble .tit {
    display: block;
    font-weight: 700;
    color: #444;
}

.moreTooltip .bubble .tit + .list {
    margin-top: 4px;
}

.moreTooltip .bubble .list li {
    position: relative;
    padding-left: 8px;
    color: #666;
}

.moreTooltip .bubble .list li + li {
    margin-top: 4px;
}

.moreTooltip .bubble .list li:before {
    position: absolute;
    top: 8px;
    left: 0;
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 100%;
    background: #909090;
}

.moreTooltip .bubble .list + .tit {
    margin-top: 8px;
}

.moreTooltip .bubble .btnClose {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: url(../img/godo2023/ico_tooltip_close.svg) no-repeat 18px 12px;
    text-indent: -9999px;
    overflow: hidden;
}

.moreTooltip.down .bubble {
    bottom: auto;
    top: 100%;
}

.moreTooltip.down .bubble:before {
    top: 0;
    background-image: url("../img/godo2023/ico_bubble_down.svg");
}

.moreTooltip.down .bubbleInner {
    bottom: auto;
    top: 100%;
    margin-top: 10px;
}

.moreTooltip.left .bubbleInner {
    left: -60px;
    margin-left: 0;
}

.moreTooltip.right .bubbleInner {
    left: auto;
    right: -20px;
    margin-left: 0;
}

.moreTooltip.open .ico .bubble {
    display: block;
}

.formGroup .formItemRow {
    margin-top: 40px;
}

.formGroup .formItemRow:first-child {
    margin-top: 0;
}

.formGroup .textInfoGray span {
    display: contents;
    font-weight: 500;
}

.descList {
    margin-top: 40px;
}

.descList li {
    position: relative;
    padding-left: 11px;
    font-size: 14px;
    line-height: 24px;
    color: #909090;
}

.descList li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    height: 3px;
    width: 3px;
    border-radius: 50%;
    background: #909090;
}

.descList li + li {
    margin-top: 4px;
}

.subTitle {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-top: 40px;
}

.subTitle .txt {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #909090;
}

.subTitle + .formItemRow,
.subTitle + .itemTitle {
    margin-top: 24px;
}

.itemTitle {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.itemTitle i {
    display: inline-flex;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
}

.formLabel {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #444;
}

[class*='formItem'].focus .formLabel {
    color: #4130df;
}

[class*='formItem']:has(input:focus:not([readonly]), .selectButton:focus:not([readonly])) .formLabel {
    color: #4130df;
}

.formTextDesc {
    margin-top: 12px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #4130df;
}

.formTextDesc.aliCnfmd {
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: #f7f7f7;
    border-radius: 8px;
    color: #444;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

.formTextDesc.aliCnfmd::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    box-sizing: border-box;
    background-image: url(../img/godo2023/ico_checkbox_disabled.svg);
    vertical-align: sub;
    margin-right: 5px;
}

.formTextError {
    margin-top: 12px;
    display: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #ff0000;
}

.error .formTextError {
    display: block;
}

.formItemRow .formItemColumn {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

.formItemRow .hyphen {
    flex: 0 0 auto;
    height: 1px;
    width: 6px;
    background: #909090;
}

.formItemRow.socialSecurityNumber .formItemColumn {
    column-gap: 12px;
}

.formItemRow.socialSecurityNumber .backNum {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    width: 100%;
    column-gap: 4px;
}

.formItemRow.socialSecurityNumber .backNum .hyphen {
    margin: 0 12px;
}

.formItemRow.socialSecurityNumber .backNum .inputItem, .formItemRow.socialSecurityNumber .backNum .inputItemNline {
    flex: 0 0 auto;
    width: 28px;
}

.formItemRow.socialSecurityNumber .backNum .inputItem input, .formItemRow.socialSecurityNumber .backNum .inputItemNline input {
    text-align: center;
}

.formItemRow.socialSecurityNumber .backNum .inputItem input[disabled][type='text'], .formItemRow.socialSecurityNumber .backNum .inputItemNline input[disabled][type='text'], .formItemRow.socialSecurityNumber .backNum .inputItem input[disabled][type='number'], .formItemRow.socialSecurityNumber .backNum .inputItemNline input[disabled][type='number'] {
    color: #909090 !important;
}

.formItemRow.socialSecurityNumber .backNum:after {
    content: '';
    display: block;
    height: 8px;
    width: 88px;
    background-color: transparent;
    background-image: radial-gradient(black 4px, transparent 0);
    background-size: 16px 16px;
    background-repeat: repeat-x;
    background-position: -4px 50%;
}

.formItemRow.socialSecurityNumber .backNum.disabled:after {
    background-image: radial-gradient(#909090 4px, transparent 0);
}

.formItemRow.passwordNumber .inputItem, .formItemRow.passwordNumber .inputItemNline {
    flex: 0 0 200px;
}

.formItemRow.passwordNumber .backNum {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    width: 100%;
}

.formItemRow.passwordNumber .backNum:after {
    content: '';
    display: block;
    height: 8px;
    width: 28px;
    background-color: transparent;
    background-image: radial-gradient(black 4px, transparent 0);
    background-size: 16px 16px;
    background-repeat: repeat-x;
    background-position: -4px 50%;
}

.formItemRow.phoneColumn .inputItem:first-child, .formItemRow.phoneColumn .inputItemNline:first-child {
    flex: 0 0 180px;
}

.inputItem, .inputItemNline {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    padding-bottom: 1px;
    border-bottom: 1px solid #e1e1e1;
    column-gap: 10px;
}

.inputItem .value, .inputItemNline .value,
.inputItem input,
.inputItemNline input {
    flex: 1 1 auto;
    outline: none;
    border: none;
    padding: 22px 0;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #000;
}

.inputItem .value::placeholder, .inputItemNline .value::placeholder,
.inputItem input::placeholder,
.inputItemNline input::placeholder {
    color: #bfbfbf;
    font-weight: 400;
}

.inputItem .inputUtil, .inputItemNline .inputUtil {
    display: flex;
    align-items: center;
    column-gap: 8px;
    flex: 0 0 auto;
}

.inputItem .inputUtil .count, .inputItemNline .inputUtil .count {
    color: #4130df;
    font-size: 16px;
    line-height: 26px;
}

.inputItem .inputUtil .del, .inputItemNline .inputUtil .del {
    z-index: 9;
    width: 30px;
    height: 30px;
    text-indent: -999px;
    overflow: hidden;
    background: url(../img/godo2023/ico_delete.svg) no-repeat center/20px 20px;
}

.inputItem .inputUtil .btnSt.secondary1, .inputItemNline .inputUtil .btnSt.secondary1, .inputItem .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary1, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .inputItem .inputUtil a.secondary1, .inputItemNline .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary1, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .inputItemNline .inputUtil a.secondary1, .inputItem .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .inputItem .inputUtil a:not(.btn-bg), .inputItemNline .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .inputItemNline .inputUtil a:not(.btn-bg), .inputItem .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl a.cart-btn.cart-btn-talk, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl .inputItem .inputUtil a.cart-btn.cart-btn-talk, .inputItemNline .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl a.cart-btn.cart-btn-talk, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl .inputItemNline .inputUtil a.cart-btn.cart-btn-talk, .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .cart-empty-wrap .btns-wrap a.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .cart-empty-wrap .btns-wrap .inputItem .inputUtil a.cart-btn.cart-btn-talk, .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .cart-empty-wrap .btns-wrap a.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .cart-empty-wrap .btns-wrap .inputItemNline .inputUtil a.cart-btn.cart-btn-talk, .inputItem .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl .inputItem .inputUtil a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItemNline .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl .inputItemNline .inputUtil a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .cart-empty-wrap .btns-wrap a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .cart-empty-wrap .btns-wrap .inputItem .inputUtil a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .cart-empty-wrap .btns-wrap a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .cart-empty-wrap .btns-wrap .inputItemNline .inputUtil a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItem .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal a.btn-outline-primary, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal .inputItem .inputUtil a.btn-outline-primary, .inputItemNline .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal a.btn-outline-primary, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal .inputItemNline .inputUtil a.btn-outline-primary, .inputItem .inputUtil body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap a.btn-outline-primary, body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap .inputItem .inputUtil a.btn-outline-primary, .inputItemNline .inputUtil body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap a.btn-outline-primary, body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap .inputItemNline .inputUtil a.btn-outline-primary, .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .secondary1.cart-btn, body .wrap.godo2023 .my-cart-tbl .inputItem .inputUtil .secondary1.cart-btn, .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .secondary1.cart-btn, body .wrap.godo2023 .my-cart-tbl .inputItemNline .inputUtil .secondary1.cart-btn, .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .cart-empty-wrap .btns-wrap a.cart-btn:not(.btn-bg), body .wrap.godo2023 .my-cart-tbl .cart-empty-wrap .btns-wrap .inputItem .inputUtil a.cart-btn:not(.btn-bg), .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .cart-empty-wrap .btns-wrap a.cart-btn:not(.btn-bg), body .wrap.godo2023 .my-cart-tbl .cart-empty-wrap .btns-wrap .inputItemNline .inputUtil a.cart-btn:not(.btn-bg), .inputItem .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl a.cart-btn:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl .inputItem .inputUtil a.cart-btn:not(.btn-bg), .inputItemNline .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl a.cart-btn:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl .inputItemNline .inputUtil a.cart-btn:not(.btn-bg), .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .inputItem .inputUtil .cart-btn.cart-btn-talk, .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .inputItemNline .inputUtil .cart-btn.cart-btn-talk, .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .inputItem .inputUtil .cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .inputItemNline .inputUtil .cart-btn.cart-btn-sold-out:not(.cart-btn-other),
.inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .inputItem .inputUtil .cart-btn.cart-btn-talk,
.inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .inputItemNline .inputUtil .cart-btn.cart-btn-talk,
.inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .inputItem .inputUtil .cart-btn.cart-btn-sold-out:not(.cart-btn-other),
.inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .inputItemNline .inputUtil .cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .modal .cart-btn.btn-outline-primary, body .wrap.godo2023 .my-cart-tbl .modal .inputItem .inputUtil .cart-btn.btn-outline-primary, .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .modal .cart-btn.btn-outline-primary, body .wrap.godo2023 .my-cart-tbl .modal .inputItemNline .inputUtil .cart-btn.btn-outline-primary, .inputItem .inputUtil body .wrap.godo2023 .modal .my-cart-tbl .cart-btn.btn-outline-primary, body .wrap.godo2023 .modal .my-cart-tbl .inputItem .inputUtil .cart-btn.btn-outline-primary, .inputItemNline .inputUtil body .wrap.godo2023 .modal .my-cart-tbl .cart-btn.btn-outline-primary, body .wrap.godo2023 .modal .my-cart-tbl .inputItemNline .inputUtil .cart-btn.btn-outline-primary,
.inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .secondary1.cart-btn, body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .inputItem .inputUtil .secondary1.cart-btn,
.inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .secondary1.cart-btn, body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .inputItemNline .inputUtil .secondary1.cart-btn, .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .cart-empty-wrap .btns-wrap a.cart-btn:not(.btn-bg), body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .cart-empty-wrap .btns-wrap .inputItem .inputUtil a.cart-btn:not(.btn-bg), .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .cart-empty-wrap .btns-wrap a.cart-btn:not(.btn-bg), body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .cart-empty-wrap .btns-wrap .inputItemNline .inputUtil a.cart-btn:not(.btn-bg), .inputItem .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl .all-btns-wrap a.cart-btn:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl .all-btns-wrap .inputItem .inputUtil a.cart-btn:not(.btn-bg), .inputItemNline .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl .all-btns-wrap a.cart-btn:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-tbl .all-btns-wrap .inputItemNline .inputUtil a.cart-btn:not(.btn-bg), .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .modal .cart-btn.btn-outline-primary, body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .modal .inputItem .inputUtil .cart-btn.btn-outline-primary, .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .modal .cart-btn.btn-outline-primary, body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .modal .inputItemNline .inputUtil .cart-btn.btn-outline-primary, .inputItem .inputUtil body .wrap.godo2023 .modal .my-cart-tbl .all-btns-wrap .cart-btn.btn-outline-primary, body .wrap.godo2023 .modal .my-cart-tbl .all-btns-wrap .inputItem .inputUtil .cart-btn.btn-outline-primary, .inputItemNline .inputUtil body .wrap.godo2023 .modal .my-cart-tbl .all-btns-wrap .cart-btn.btn-outline-primary, body .wrap.godo2023 .modal .my-cart-tbl .all-btns-wrap .inputItemNline .inputUtil .cart-btn.btn-outline-primary, .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .my-cart-list-acc .my-cart-tbl-acc .inputItem .inputUtil .group-total-btn > a.cart-btn.cart-btn-talk, .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .my-cart-list-acc .my-cart-tbl-acc .inputItemNline .inputUtil .group-total-btn > a.cart-btn.cart-btn-talk, .inputItem .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .group-total-btn > a.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .inputItem .inputUtil .group-total-btn > a.cart-btn.cart-btn-talk, .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .group-total-btn > a.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .inputItemNline .inputUtil .group-total-btn > a.cart-btn.cart-btn-talk, .inputItem .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary1, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .inputItem .inputUtil .group-total-btn > a.secondary1, .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary1, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .inputItemNline .inputUtil .group-total-btn > a.secondary1, .inputItem .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-empty-wrap .btns-wrap .group-total-btn > a:not(.btn-bg), body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-empty-wrap .btns-wrap .inputItem .inputUtil .group-total-btn > a:not(.btn-bg), .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-empty-wrap .btns-wrap .group-total-btn > a:not(.btn-bg), body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-empty-wrap .btns-wrap .inputItemNline .inputUtil .group-total-btn > a:not(.btn-bg), .inputItem .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-list-acc .my-cart-tbl-acc .inputItem .inputUtil .group-total-btn > a:not(.btn-bg), .inputItemNline .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .my-cart-list-acc .my-cart-tbl-acc .inputItemNline .inputUtil .group-total-btn > a:not(.btn-bg), .inputItem .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .group-total-btn > a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .inputItem .inputUtil .group-total-btn > a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .group-total-btn > a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .inputItemNline .inputUtil .group-total-btn > a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .my-cart-list-acc .my-cart-tbl-acc .inputItem .inputUtil .group-total-btn > a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .my-cart-list-acc .my-cart-tbl-acc .inputItemNline .inputUtil .group-total-btn > a.cart-btn.cart-btn-sold-out:not(.cart-btn-other),
.inputItem .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .all-btns-wrap .group-total-btn > a.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .all-btns-wrap .inputItem .inputUtil .group-total-btn > a.cart-btn.cart-btn-talk,
.inputItemNline .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .all-btns-wrap .group-total-btn > a.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .all-btns-wrap .inputItemNline .inputUtil .group-total-btn > a.cart-btn.cart-btn-talk,
.inputItem .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .all-btns-wrap .group-total-btn > a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .all-btns-wrap .inputItem .inputUtil .group-total-btn > a.cart-btn.cart-btn-sold-out:not(.cart-btn-other),
.inputItemNline .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .all-btns-wrap .group-total-btn > a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .all-btns-wrap .inputItemNline .inputUtil .group-total-btn > a.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItem .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-outline-primary, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .inputItem .inputUtil .group-total-btn > a.btn-outline-primary, .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-outline-primary, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .inputItemNline .inputUtil .group-total-btn > a.btn-outline-primary, .inputItem .inputUtil body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.btn-outline-primary, body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .inputItem .inputUtil .group-total-btn > a.btn-outline-primary, .inputItemNline .inputUtil body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.btn-outline-primary, body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .inputItemNline .inputUtil .group-total-btn > a.btn-outline-primary, .inputItem .inputUtil body .wrap.godo2023 .modal .secondary1.btn-primary, body .wrap.godo2023 .modal .inputItem .inputUtil .secondary1.btn-primary, .inputItemNline .inputUtil body .wrap.godo2023 .modal .secondary1.btn-primary, body .wrap.godo2023 .modal .inputItemNline .inputUtil .secondary1.btn-primary, .inputItem .inputUtil body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap a.btn-primary:not(.btn-bg), body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap .inputItem .inputUtil a.btn-primary:not(.btn-bg), .inputItemNline .inputUtil body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap a.btn-primary:not(.btn-bg), body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap .inputItemNline .inputUtil a.btn-primary:not(.btn-bg), .inputItem .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal a.btn-primary:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal .inputItem .inputUtil a.btn-primary:not(.btn-bg), .inputItemNline .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal a.btn-primary:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal .inputItemNline .inputUtil a.btn-primary:not(.btn-bg), .inputItem .inputUtil body .wrap.godo2023 .modal .my-cart-tbl .btn-primary.cart-btn.cart-btn-talk, body .wrap.godo2023 .modal .my-cart-tbl .inputItem .inputUtil .btn-primary.cart-btn.cart-btn-talk, .inputItemNline .inputUtil body .wrap.godo2023 .modal .my-cart-tbl .btn-primary.cart-btn.cart-btn-talk, body .wrap.godo2023 .modal .my-cart-tbl .inputItemNline .inputUtil .btn-primary.cart-btn.cart-btn-talk, .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .modal .btn-primary.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .modal .inputItem .inputUtil .btn-primary.cart-btn.cart-btn-talk, .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .modal .btn-primary.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .modal .inputItemNline .inputUtil .btn-primary.cart-btn.cart-btn-talk, .inputItem .inputUtil body .wrap.godo2023 .modal .my-cart-tbl .btn-primary.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .modal .my-cart-tbl .inputItem .inputUtil .btn-primary.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItemNline .inputUtil body .wrap.godo2023 .modal .my-cart-tbl .btn-primary.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .modal .my-cart-tbl .inputItemNline .inputUtil .btn-primary.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .modal .btn-primary.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .modal .inputItem .inputUtil .btn-primary.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .modal .btn-primary.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .modal .inputItemNline .inputUtil .btn-primary.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItem .inputUtil body .wrap.godo2023 .modal .btn-primary.btn-outline-primary, body .wrap.godo2023 .modal .inputItem .inputUtil .btn-primary.btn-outline-primary, .inputItemNline .inputUtil body .wrap.godo2023 .modal .btn-primary.btn-outline-primary, body .wrap.godo2023 .modal .inputItemNline .inputUtil .btn-primary.btn-outline-primary, .inputItem .inputUtil body .wrap.godo2023 .modal .secondary1.btn-semi, body .wrap.godo2023 .modal .inputItem .inputUtil .secondary1.btn-semi, .inputItemNline .inputUtil body .wrap.godo2023 .modal .secondary1.btn-semi, body .wrap.godo2023 .modal .inputItemNline .inputUtil .secondary1.btn-semi, .inputItem .inputUtil body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap a.btn-semi:not(.btn-bg), body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap .inputItem .inputUtil a.btn-semi:not(.btn-bg), .inputItemNline .inputUtil body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap a.btn-semi:not(.btn-bg), body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap .inputItemNline .inputUtil a.btn-semi:not(.btn-bg), .inputItem .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal a.btn-semi:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal .inputItem .inputUtil a.btn-semi:not(.btn-bg), .inputItemNline .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal a.btn-semi:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal .inputItemNline .inputUtil a.btn-semi:not(.btn-bg), .inputItem .inputUtil body .wrap.godo2023 .modal .my-cart-tbl .btn-semi.cart-btn.cart-btn-talk, body .wrap.godo2023 .modal .my-cart-tbl .inputItem .inputUtil .btn-semi.cart-btn.cart-btn-talk, .inputItemNline .inputUtil body .wrap.godo2023 .modal .my-cart-tbl .btn-semi.cart-btn.cart-btn-talk, body .wrap.godo2023 .modal .my-cart-tbl .inputItemNline .inputUtil .btn-semi.cart-btn.cart-btn-talk, .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .modal .btn-semi.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .modal .inputItem .inputUtil .btn-semi.cart-btn.cart-btn-talk, .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .modal .btn-semi.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .modal .inputItemNline .inputUtil .btn-semi.cart-btn.cart-btn-talk, .inputItem .inputUtil body .wrap.godo2023 .modal .my-cart-tbl .btn-semi.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .modal .my-cart-tbl .inputItem .inputUtil .btn-semi.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItemNline .inputUtil body .wrap.godo2023 .modal .my-cart-tbl .btn-semi.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .modal .my-cart-tbl .inputItemNline .inputUtil .btn-semi.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .modal .btn-semi.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .modal .inputItem .inputUtil .btn-semi.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .modal .btn-semi.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .modal .inputItemNline .inputUtil .btn-semi.cart-btn.cart-btn-sold-out:not(.cart-btn-other), .inputItem .inputUtil body .wrap.godo2023 .modal .btn-semi.btn-outline-primary, body .wrap.godo2023 .modal .inputItem .inputUtil .btn-semi.btn-outline-primary, .inputItemNline .inputUtil body .wrap.godo2023 .modal .btn-semi.btn-outline-primary, body .wrap.godo2023 .modal .inputItemNline .inputUtil .btn-semi.btn-outline-primary, .inputItem .inputUtil body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .inputItem .inputUtil .btn-outline-primary, .inputItemNline .inputUtil body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .inputItemNline .inputUtil .btn-outline-primary,
.inputItem .inputUtil .btnSt.secondary3,
.inputItemNline .inputUtil .btnSt.secondary3,
.inputItem .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary3,
body .wrap.godo2023 .cart-empty-wrap .btns-wrap .inputItem .inputUtil a.secondary3,
.inputItemNline .inputUtil body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary3,
body .wrap.godo2023 .cart-empty-wrap .btns-wrap .inputItemNline .inputUtil a.secondary3,
.inputItem .inputUtil body .wrap.godo2023 .my-cart-tbl .secondary3.cart-btn,
body .wrap.godo2023 .my-cart-tbl .inputItem .inputUtil .secondary3.cart-btn,
.inputItemNline .inputUtil body .wrap.godo2023 .my-cart-tbl .secondary3.cart-btn,
body .wrap.godo2023 .my-cart-tbl .inputItemNline .inputUtil .secondary3.cart-btn,
.inputItem .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary3,
body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .inputItem .inputUtil .group-total-btn > a.secondary3,
.inputItemNline .inputUtil body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary3,
body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .inputItemNline .inputUtil .group-total-btn > a.secondary3,
.inputItem .inputUtil body .wrap.godo2023 .modal .secondary3.btn-primary,
body .wrap.godo2023 .modal .inputItem .inputUtil .secondary3.btn-primary,
.inputItemNline .inputUtil body .wrap.godo2023 .modal .secondary3.btn-primary,
body .wrap.godo2023 .modal .inputItemNline .inputUtil .secondary3.btn-primary,
.inputItem .inputUtil body .wrap.godo2023 .modal .btn-semi,
body .wrap.godo2023 .modal .inputItem .inputUtil .btn-semi,
.inputItemNline .inputUtil body .wrap.godo2023 .modal .btn-semi,
body .wrap.godo2023 .modal .inputItemNline .inputUtil .btn-semi,
.inputItem .inputUtil body .wrap.godo2023 .modal .secondary3.btn-outline-primary,
body .wrap.godo2023 .modal .inputItem .inputUtil .secondary3.btn-outline-primary,
.inputItemNline .inputUtil body .wrap.godo2023 .modal .secondary3.btn-outline-primary,
body .wrap.godo2023 .modal .inputItemNline .inputUtil .secondary3.btn-outline-primary {
    min-width: 120px;
}

.error .inputItem, .error .inputItemNline, .inputItem.error, .error.inputItemNline {
    padding-bottom: 0;
    border-bottom: 2px solid #ff0000;
}

.inputItem.focus, .focus.inputItemNline,
.focus .inputItem,
.focus .inputItemNline {
    padding-bottom: 0;
    border-bottom: 2px solid #4130df;
}

.inputItem.focus, .focus.inputItemNline, .inputItem:has(input:focus), .inputItemNline:has(input:focus) {
    padding-bottom: 0;
    border-bottom: 2px solid #4130df;
    /*input {
        &::placeholder {
          color: $G100;
        }
      }*/
}

.inputItem.disabled, .disabled.inputItemNline, .inputItem.readonly, .readonly.inputItemNline {
    padding-bottom: 1px;
    border-bottom: 1px solid #e1e1e1;
}

.inputItem.disabled input, .disabled.inputItemNline input, .inputItem.readonly input, .readonly.inputItemNline input {
    color: #909090;
    background: #fff;
}

.inputItem:has(input[disabled]), .inputItemNline:has(input[disabled]), .inputItem:has(input[readonly]), .inputItemNline:has(input[readonly]) {
    padding-bottom: 1px;
    border-bottom: 1px solid #e1e1e1;
}

.inputItem:has(input[disabled]) input, .inputItemNline:has(input[disabled]) input, .inputItem:has(input[readonly]) input, .inputItemNline:has(input[readonly]) input {
    color: #909090;
    background: #fff;
}

.inputItem.hiddenForeignNum, .hiddenForeignNum.inputItemNline, .inputItem.hiddenPhoneNum, .hiddenPhoneNum.inputItemNline, .inputItem.hiddenCardNum, .hiddenCardNum.inputItemNline, .inputItem.hiddenAcNum, .hiddenAcNum.inputItemNline, .inputItem.hiddenPocPhoneNum, .hiddenPocPhoneNum.inputItemNline, .inputItem.hiddenSsNum, .hiddenSsNum.inputItemNline {
    position: relative;
}

.inputItem.hiddenForeignNum .value, .hiddenForeignNum.inputItemNline .value, .inputItem.hiddenPhoneNum .value, .hiddenPhoneNum.inputItemNline .value, .inputItem.hiddenCardNum .value, .hiddenCardNum.inputItemNline .value, .inputItem.hiddenAcNum .value, .hiddenAcNum.inputItemNline .value, .inputItem.hiddenPocPhoneNum .value, .hiddenPocPhoneNum.inputItemNline .value, .inputItem.hiddenSsNum .value, .hiddenSsNum.inputItemNline .value {
    display: none;
    position: absolute;
    left: -9999px;
}

.inputItem.hiddenForeignNum .value:after, .hiddenForeignNum.inputItemNline .value:after, .inputItem.hiddenPhoneNum .value:after, .hiddenPhoneNum.inputItemNline .value:after, .inputItem.hiddenCardNum .value:after, .hiddenCardNum.inputItemNline .value:after, .inputItem.hiddenAcNum .value:after, .hiddenAcNum.inputItemNline .value:after, .inputItem.hiddenPocPhoneNum .value:after, .hiddenPocPhoneNum.inputItemNline .value:after, .inputItem.hiddenSsNum .value:after, .hiddenSsNum.inputItemNline .value:after {
    content: '';
    display: inline-block;
    height: 10px;
    width: 2px;
    background: red;
}

.inputItem.hiddenForeignNum .ipt, .hiddenForeignNum.inputItemNline .ipt, .inputItem.hiddenPhoneNum .ipt, .hiddenPhoneNum.inputItemNline .ipt, .inputItem.hiddenCardNum .ipt, .hiddenCardNum.inputItemNline .ipt, .inputItem.hiddenAcNum .ipt, .hiddenAcNum.inputItemNline .ipt, .inputItem.hiddenPocPhoneNum .ipt, .hiddenPocPhoneNum.inputItemNline .ipt, .inputItem.hiddenSsNum .ipt, .hiddenSsNum.inputItemNline .ipt {
    flex: 1 1 auto;
    outline: none;
    border: none;
    padding: 22px 0;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #000;
}

.inputItem.hiddenForeignNum .ipt::placeholder, .hiddenForeignNum.inputItemNline .ipt::placeholder, .inputItem.hiddenPhoneNum .ipt::placeholder, .hiddenPhoneNum.inputItemNline .ipt::placeholder, .inputItem.hiddenCardNum .ipt::placeholder, .hiddenCardNum.inputItemNline .ipt::placeholder, .inputItem.hiddenAcNum .ipt::placeholder, .hiddenAcNum.inputItemNline .ipt::placeholder, .inputItem.hiddenPocPhoneNum .ipt::placeholder, .hiddenPocPhoneNum.inputItemNline .ipt::placeholder, .inputItem.hiddenSsNum .ipt::placeholder, .hiddenSsNum.inputItemNline .ipt::placeholder {
    color: #bfbfbf;
    font-weight: 400;
}

.inputItem.hiddenForeignNum .ipt[disabled], .hiddenForeignNum.inputItemNline .ipt[disabled], .inputItem.hiddenPhoneNum .ipt[disabled], .hiddenPhoneNum.inputItemNline .ipt[disabled], .inputItem.hiddenCardNum .ipt[disabled], .hiddenCardNum.inputItemNline .ipt[disabled], .inputItem.hiddenAcNum .ipt[disabled], .hiddenAcNum.inputItemNline .ipt[disabled], .inputItem.hiddenPocPhoneNum .ipt[disabled], .hiddenPocPhoneNum.inputItemNline .ipt[disabled], .inputItem.hiddenSsNum .ipt[disabled], .hiddenSsNum.inputItemNline .ipt[disabled] {
    color: #909090;
    background-color: #fff;
}

.phoneNumList {
    counter-reset: number 0;
    margin-top: 24px;
}

.phoneNumList li {
    position: relative;
    display: flex;
    padding-left: 30px;
}

.phoneNumList li .formItemRow {
    margin-top: 0;
    flex: none;
    width: 164px;
}

.phoneNumList li:before {
    position: absolute;
    top: 22px;
    left: 0;
    counter-increment: number 1;
    content: counter(number);
    width: 16px;
    height: 16px;
    border-radius: 100%;
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    background: #000;
    color: #fff;
}

.phoneNumList li + li {
    margin-top: 28px;
}

.phoneNumItem {
    display: flex;
    width: 100%;
}

.phoneNumItem .phoneFirst {
    display: flex;
    height: 60px;
    align-items: center;
}

.phoneNumItem .phoneFirst .first {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.phoneNumItem .phoneFirst .hyphen {
    flex: 0 0 auto;
    height: 1px;
    width: 6px;
    margin: 0 12px;
    background: #909090;
}

.phoneNumItem .phoneFirst .backNum {
    display: flex;
    align-items: center;
    flex: 0 0 60px;
    width: 60px;
}

.phoneNumItem .phoneFirst .backNum:after {
    content: '';
    display: block;
    height: 8px;
    width: 100%;
    background-color: transparent;
    background-image: radial-gradient(black 4px, transparent 0);
    background-size: 16px 16px;
    background-repeat: repeat-x;
    background-position: -4px 50%;
}

.phoneNumItem .formItemRow {
    flex: 1 1 auto;
}

.phoneNumItem .formItemRow .formItemColumn .inputItem input, .phoneNumItem .formItemRow .formItemColumn .inputItemNline input {
    padding: 15px 0;
}

.formRadio {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.formRadio input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.formRadio .text {
    margin-left: 8px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

.formRadio:before, .btnRadio.iconRadio:before {
    content: '';
    flex: 0 0 auto;
    display: block;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border-radius: 100%;
    background: url(../img/godo2023/ico_radio_off.svg) no-repeat center/100%;
}

.formRadio:has(input:focus-visible):before, .btnRadio.iconRadio:has(input:focus-visible):before {
    border: 2px solid #4130df;
}

.formRadio.checked:before, .checked.btnRadio.iconRadio:before {
    background-image: url(../img/godo2023/ico_radio_on.svg);
}

.formRadio:has(input:checked):before, .btnRadio.iconRadio:has(input:checked):before {
    background-image: url(../img/godo2023/ico_radio_on.svg);
}

.formRadio.disabled input {
    cursor: revert;
}

.formRadio.disabled.checked:before, .disabled.checked.btnRadio.iconRadio:before {
    background-image: url(../img/godo2023/ico_radio_disabled.svg);
}

.formRadio:has(input:disabled) input {
    cursor: revert;
}

.formRadio:has(input:disabled).checked:before, .btnRadio.iconRadio:has(input:disabled).checked:before {
    background-image: url(../img/godo2023/ico_radio_disabled.svg);
}

.formRadio.sm .text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #909090;
}

.formRadio.sm:before, .sm.btnRadio.iconRadio:before {
    width: 16px;
    height: 16px;
    background: url(../img/godo2023/ico_radio_sm_off.svg) center/100%;
}

.formRadio.sm:has(input:checked) .text {
    color: #000;
}

.formRadio.sm:has(input:checked):before, .sm.btnRadio.iconRadio:has(input:checked):before {
    background-image: url(../img/godo2023/ico_radio_sm_on.svg);
}

.formRadio.sm:has(input:disabled) .text {
    color: #bfbfbf;
}

.formRadio.sm:has(input:disabled):before, .sm.btnRadio.iconRadio:has(input:disabled):before {
    background-image: url(../img/godo2023/ico_radio_sm_disabled.svg);
}

.formRadio.lg .text {
    margin-left: 12px;
    font-size: 18px;
    line-height: 28px;
}

.btnRadioGroup {
    display: flex;
    gap: 12px;
}

.btnRadioGroup .flxClmn {
    flex-direction: column;
}

.tabRadioGroup {
    display: flex;
    gap: 12px;
}

.btnRadio {
    position: relative;
    display: flex;
    width: 100%;
    padding: 28px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    font-weight: 700;
    border-radius: 8px;
}

.btnRadio:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    pointer-events: none;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

.btnRadio input {
    position: absolute;
    left: 0;
    opacity: 0;
}

.btnRadio .text {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.btnRadio .text i {
    height: 40px;
    width: 40px;
}

.btnRadio .text i img {
    vertical-align: top;
}

.btnRadio.lg {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.btnRadio.iconRadio {
    column-gap: 12px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #444;
    justify-content: flex-start;
}

.btnRadio.iconRadio.checked .text {
    font-weight: 700;
}

.btnRadio.iconRadio:has(input:focus-visible) .text, .btnRadio.iconRadio:has(input:checked) .text {
    font-weight: 700;
}

.btnRadio.iconRadio.disabled {
    background: #fff;
    color: #bfbfbf;
    border-color: #efefef;
    box-shadow: none;
}

.btnRadio.iconRadio.disabled:after {
    border: 1px solid #efefef;
}

.btnRadio.iconRadio.disabled .text {
    color: #bfbfbf;
}

.btnRadio.iconRadio:has(input:disabled) {
    background: #fff;
    color: #bfbfbf;
    border-color: #efefef;
    box-shadow: none;
}

.btnRadio.iconRadio:has(input:disabled):after {
    border: 1px solid #efefef;
}

.btnRadio.iconRadio:has(input:disabled) .text {
    color: #bfbfbf;
}

.btnRadio.checked {
    color: #4130df;
    box-shadow: 0 2px 4px 0 rgba(65, 48, 223, 0.18);
}

.btnRadio.checked:after {
    padding: 0;
    border: 2px solid #4130df;
}

.btnRadio:has(input:focus-visible), .btnRadio:has(input:checked) {
    box-shadow: 0 2px 4px 0 rgba(65, 48, 223, 0.18);
}

.btnRadio:has(input:focus-visible):after, .btnRadio:has(input:checked):after {
    padding: 0;
    border: 2px solid #4130df;
}

.btnRadio:has(input:checked) {
    color: #4130df;
}

.btnRadio:has(input:disabled) {
    background: #fff;
    color: #bfbfbf;
    border-color: #efefef;
    box-shadow: none;
}

.formCheckboxWrap {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.formCheckboxWrap button {
    height: 20px;
    width: 20px;
    background: url("../img/godo2023/ico_agree_arr.svg") no-repeat 50% 50%;
    transform: rotate(-90deg);
    text-indent: -999px;
    overflow: hidden;
}

.formCheckbox {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.formCheckbox input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.formCheckbox .text {
    margin-left: 8px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #909090;
}

.formCheckbox .text .sub {
    font-weight: 400;
    color: #909090;
}

.formCheckbox .text .red {
    font-weight: 700;
    color: #ff0000;
}

.formCheckbox .text.bold {
    font-weight: 700;
}

.formCheckbox:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    box-sizing: border-box;
    background: url(../img/godo2023/ico_checkbox_off.svg) center/100%;
}

.formCheckbox.focus:before, .formCheckbox:has(input:focus-visible):before {
    border: 2px solid #4130df;
}

.formCheckbox:has(input:checked) .text {
    color: #000;
}

.formCheckbox:has(input:checked):before {
    background-image: url(../img/godo2023/ico_checkbox_on.svg);
}

.formCheckbox.checked .text {
    color: #000;
}

.formCheckbox.checked:before {
    background-image: url(../img/godo2023/ico_checkbox_on.svg);
}

.formCheckbox.disabled input, .formCheckbox:has(input:disabled) input {
    cursor: revert;
}

.formCheckbox.disabled:before, .formCheckbox:has(input:disabled):before {
    background-image: url(../img/godo2023/ico_checkbox_disabled.svg);
}

.formCheckbox.sm .text {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #909090;
}

.formCheckbox.sm:before {
    width: 16px;
    height: 16px;
    background: url(../img/godo2023/ico_checkbox_sm_off.svg) center/100%;
}

.formCheckbox.sm.checked .text {
    color: #000;
}

.formCheckbox.sm.checked:before {
    background-image: url(../img/godo2023/ico_checkbox_sm_on.svg);
}

.formCheckbox.sm.disabled .text,
.formCheckbox.sm.disabled .text > span {
    color: #bfbfbf;
}

.formCheckbox.sm.disabled:before {
    background-image: url(../img/godo2023/ico_checkbox_sm_disabled.svg);
}

.formCheckbox.lg .text {
    margin-left: 12px;
    font-size: 18px;
    line-height: 28px;
}

.formToggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    column-gap: 8px;
}

.formToggle.on:after {
    content: '';
    display: block;
    width: 42px;
    height: 24px;
    box-sizing: border-box;
    border-radius: 200px;
    background-image: url(../img/godo2023/ico_toggle_on.svg);
}

.formToggle input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.formToggle .text {
    font-size: 13px;
    line-height: 23px;
    color: #444;
}

.formToggle:after {
    content: '';
    display: block;
    width: 42px;
    height: 24px;
    box-sizing: border-box;
    border-radius: 200px;
    background: url(../img/godo2023/ico_toggle_off.svg) no-repeat center 100%;
}

.formToggle:has(input:focus-visible):after {
    border: 2px solid #4130df;
}

.formToggle:has(input:checked):after {
    background-image: url(../img/godo2023/ico_toggle_on.svg);
}

.formToggle:has(input:disabled) {
    opacity: 0.5;
}

.selectItem, .selectCheckItem {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    padding-bottom: 1px;
    border-bottom: 1px solid #e1e1e1;
    /*&:has(button[readonly]),
  &:has(button[disabled]) {
    padding-bottom: 1px !important;
    border-bottom: 1px solid $G30 !important;
    .selectButton {
      // cursor: not-allowed;
      color: $G50;
      &:after {
        background-image: url('../img/godo2023/ico_select_arr_gray.svg');
      }
    }
  }*/
}

.selectItem .selectButton, .selectCheckItem .selectButton {
    position: relative;
    width: 100%;
    height: 72px;
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: #bfbfbf;
    outline: none;
    padding-right: 30px;
}

.selectItem .selectButton:before, .selectCheckItem .selectButton:before {
    content: attr(data-placeholder);
}

.selectItem .selectButton[data-value], .selectCheckItem .selectButton[data-value] {
    color: #000;
    font-weight: 500;
}

.selectItem .selectButton[data-value]:before, .selectCheckItem .selectButton[data-value]:before {
    content: '';
}

.selectItem .selectButton:after, .selectCheckItem .selectButton:after {
    content: '';
    position: absolute;
    top: calc(50% - 10px);
    right: 0;
    height: 20px;
    width: 20px;
    background: url("../img/godo2023/ico_select_arr.svg") no-repeat 50% 50%/100% 100%;
}

.selectItem .selectOptions, .selectCheckItem .selectOptions {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    max-height: 160px;
    overflow-y: auto;
    padding: 4px 12px;
    box-sizing: border-box;
    background: #f5f4fc;
    border-radius: 0 0 6px 6px;
}

.selectItem .selectOptions li.disabled button, .selectCheckItem .selectOptions li.disabled button {
    color: #bfbfbf;
}

.selectItem .selectOptions li:not(:last-child), .selectCheckItem .selectOptions li:not(:last-child) {
    border-bottom: 1px solid #e1e1e1;
}

.selectItem .selectOptions li button, .selectCheckItem .selectOptions li button {
    padding: 12px 0;
    text-align: left;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
    font-weight: 400;
    color: #444;
}

.selectItem .selectOptions li button .length, .selectCheckItem .selectOptions li button .length {
    color: #ff4d4d;
}

.selectItem .selectOptions li button[data-selected], .selectCheckItem .selectOptions li button[data-selected] {
    color: #4130df;
}

.selectItem .selectOptions li button[data-selected] .length, .selectCheckItem .selectOptions li button[data-selected] .length {
    color: #4130df;
}

.selectItem.open, .open.selectCheckItem {
    padding-bottom: 0 !important;
    border-bottom: 2px solid #4130df !important;
}

.selectItem.md, .md.selectCheckItem {
    display: inline-block;
    width: auto;
    min-width: 50px;
    line-height: 24px;
}

.selectItem.md .selectButton, .md.selectCheckItem .selectButton {
    height: 42px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.selectItem.md .selectButton:after, .md.selectCheckItem .selectButton:after {
    top: calc(50% - 8px);
    height: 16px;
    width: 16px;
}

.selectItem.md .selectOptions, .md.selectCheckItem .selectOptions {
    top: 44px;
    width: auto;
    min-width: 100%;
}

.selectItem.md .selectOptions li button, .md.selectCheckItem .selectOptions li button {
    font-size: 12px;
    line-height: 18px;
}

.selectItem.sm, .sm.selectCheckItem {
    display: inline-block;
    width: auto;
    min-width: 50px;
    border-color: #fff;
}

.selectItem.sm .selectButton, .sm.selectCheckItem .selectButton {
    height: 24px;
    font-size: 14px;
    line-height: 24px;
}

.selectItem.sm .selectButton:after, .sm.selectCheckItem .selectButton:after {
    top: calc(50% - 8px);
    height: 16px;
    width: 16px;
}

.selectItem.sm .selectOptions, .sm.selectCheckItem .selectOptions {
    top: 26px;
    width: auto;
    min-width: 100%;
}

.selectItem.sm .selectOptions li button, .sm.selectCheckItem .selectOptions li button {
    font-size: 12px;
    line-height: 18px;
}

.selectItem.half .selectOptions li button, .half.selectCheckItem .selectOptions li button {
    font-size: 16px;
    line-height: 26px;
}

.selectItem.readonly, .readonly.selectCheckItem, .selectItem.disabled, .disabled.selectCheckItem {
    padding-bottom: 1px !important;
    border-bottom: 1px solid #e1e1e1 !important;
}

.selectItem.readonly .selectButton, .readonly.selectCheckItem .selectButton, .selectItem.disabled .selectButton, .disabled.selectCheckItem .selectButton {
    color: #909090;
}

.selectItem.readonly .selectButton:after, .readonly.selectCheckItem .selectButton:after, .selectItem.disabled .selectButton:after, .disabled.selectCheckItem .selectButton:after {
    background-image: none;
}

.selectItem.readonly .selectButton + .selectOptions, .readonly.selectCheckItem .selectButton + .selectOptions, .selectItem.disabled .selectButton + .selectOptions, .disabled.selectCheckItem .selectButton + .selectOptions {
    display: none;
}

.selectItem.open, .open.selectCheckItem {
    z-index: 20;
}

.selectItem.open .selectButton:after, .open.selectCheckItem .selectButton:after {
    transform: rotate(180deg);
}

.selectItem.open .selectOptions, .open.selectCheckItem .selectOptions {
    display: block;
}

.error .selectItem, .error .selectCheckItem, .selectItem.error, .error.selectCheckItem {
    padding-bottom: 0;
    border-bottom: 2px solid #ff0000;
}

.formAgreeBox, .ntcAgreeBox, .dd {
    margin-top: 20px;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
}

.formAgreeBox .formRadio, .ntcAgreeBox .formRadio, .dd .formRadio {
    width: 100%;
}

.formAgreeBox .formCheckbox .text, .ntcAgreeBox .formCheckbox .text, .dd .formCheckbox .text {
    margin-left: 12px;
}

.formAgreeBox .agreeAll, .ntcAgreeBox .agreeAll, .dd .agreeAll {
    display: flex;
    align-items: center;
}

.formAgreeBox .agreeAll button, .ntcAgreeBox .agreeAll button, .dd .agreeAll button {
    margin-left: auto;
    height: 20px;
    width: 20px;
    background: url("../img/godo2023/ico_arr_lg.svg") no-repeat 50% 50%;
}

.formAgreeBox .agreeAll .text, .ntcAgreeBox .agreeAll .text, .dd .agreeAll .text {
    font-size: 18px;
    line-height: 28px;
}

.formAgreeBox .agreeAll + .agreeSub, .ntcAgreeBox .agreeAll + .agreeSub, .dd .agreeAll + .agreeSub {
    border-top: 1px solid #efefef;
    margin-top: 20px;
    padding-top: 20px;
}

.formAgreeBox .agreeAll .disabled .text, .ntcAgreeBox .agreeAll .disabled .text, .dd .agreeAll .disabled .text {
    color: #bfbfbf;
}

.formAgreeBox .agreeSub .agreeAcd, .ntcAgreeBox .agreeSub .agreeAcd, .dd .agreeSub .agreeAcd {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.formAgreeBox .agreeSub .agreeAcd button, .ntcAgreeBox .agreeSub .agreeAcd button, .dd .agreeSub .agreeAcd button {
    height: 20px;
    width: 20px;
    background: url("../img/godo2023/ico_agree_arr_gray.svg") no-repeat 50% 50%;
    transform: rotate(-90deg);
}

.formAgreeBox .agreeSub .agreeAcd button[data-acd-btn], .ntcAgreeBox .agreeSub .agreeAcd button[data-acd-btn], .dd .agreeSub .agreeAcd button[data-acd-btn] {
    transform: rotate(0deg);
}

.formAgreeBox .agreeSub .formCheckbox .text, .ntcAgreeBox .agreeSub .formCheckbox .text, .dd .agreeSub .formCheckbox .text {
    color: #909090;
}

.formAgreeBox .agreeSub .formCheckbox:has(input:checked) .text, .ntcAgreeBox .agreeSub .formCheckbox:has(input:checked) .text, .dd .agreeSub .formCheckbox:has(input:checked) .text {
    color: #444;
}

.formAgreeBox .agreeSub .formCheckbox:has(input:checked) + button, .ntcAgreeBox .agreeSub .formCheckbox:has(input:checked) + button, .dd .agreeSub .formCheckbox:has(input:checked) + button {
    background-image: url("../img/godo2023/ico_agree_arr.svg");
}

.formAgreeBox .agreeSub .formCheckbox.disabled .text, .ntcAgreeBox .agreeSub .formCheckbox.disabled .text, .dd .agreeSub .formCheckbox.disabled .text,
.formAgreeBox .agreeSub .formCheckbox.disabled .text > span,
.ntcAgreeBox .agreeSub .formCheckbox.disabled .text > span,
.dd .agreeSub .formCheckbox.disabled .text > span {
    color: #bfbfbf !important;
}

.formAgreeBox .agreeSub [data-acd-cont], .ntcAgreeBox .agreeSub [data-acd-cont], .dd .agreeSub [data-acd-cont] {
    padding: 12px 0 0 20px;
}

.formAgreeBox .agreeSub [data-acd-cont] li, .ntcAgreeBox .agreeSub [data-acd-cont] li, .dd .agreeSub [data-acd-cont] li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.formAgreeBox .agreeSub [data-acd-cont] li button, .ntcAgreeBox .agreeSub [data-acd-cont] li button, .dd .agreeSub [data-acd-cont] li button {
    height: 20px;
    width: 20px;
    background: url("../img/godo2023/ico_agree_arr_gray.svg") no-repeat 50% 50%;
    transform: rotate(-90deg);
}

.formAgreeBox .agreeSub [data-acd-cont] li + li, .ntcAgreeBox .agreeSub [data-acd-cont] li + li, .dd .agreeSub [data-acd-cont] li + li {
    margin-top: 10px;
}

.formAgreeBox .agreeSub.open button[data-acd-btn], .ntcAgreeBox .agreeSub.open button[data-acd-btn], .dd .agreeSub.open button[data-acd-btn] {
    transform: rotate(180deg);
}

.formAgreeBox .agreeSub + .agreeSub, .ntcAgreeBox .agreeSub + .agreeSub, .dd .agreeSub + .agreeSub {
    margin-top: 20px;
}

.formAgreeBox.nline, .nline.ntcAgreeBox, .nline.dd {
    margin-top: 0;
    padding: 0;
    border: none;
}

.btnSt, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .my-cart-tbl .cart-btn,
body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .cart-btn, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .btn-outline-primary {
    display: inline-flex;
    column-gap: 4px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    padding: 11px 14px;
    border-radius: 8px;
    box-sizing: border-box;
    color: #fff;
    height: 48px;
    font-size: 16px;
    line-height: 26px;
    border: 1px solid #4130df;
    background: #4130df;
}

.btnSt:hover, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:hover, body .wrap.godo2023 .my-cart-tbl .cart-btn:hover, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a:hover, body .wrap.godo2023 .modal .btn-primary:hover, body .wrap.godo2023 .modal .btn-semi:hover, body .wrap.godo2023 .modal .btn-outline-primary:hover, .btnSt:active, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:active, body .wrap.godo2023 .my-cart-tbl .cart-btn:active, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a:active, body .wrap.godo2023 .modal .btn-primary:active, body .wrap.godo2023 .modal .btn-semi:active, body .wrap.godo2023 .modal .btn-outline-primary:active {
    background: #2e229c;
}

.btnSt[disabled], body .wrap.godo2023 .cart-empty-wrap .btns-wrap a[disabled], body .wrap.godo2023 .my-cart-tbl .cart-btn[disabled], body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a[disabled], body .wrap.godo2023 .modal .btn-primary[disabled], body .wrap.godo2023 .modal .btn-semi[disabled], body .wrap.godo2023 .modal .btn-outline-primary[disabled] {
    border-color: #e1e1e1;
    background: #e1e1e1;
}

.btnSt.negative, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.negative, body .wrap.godo2023 .my-cart-tbl .negative.cart-btn, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.negative, body .wrap.godo2023 .modal .negative.btn-primary, body .wrap.godo2023 .modal .negative.btn-semi, body .wrap.godo2023 .modal .negative.btn-outline-primary {
    color: #666;
    border-color: #909090;
    background: #fff;
}

.btnSt.negative:hover, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.negative:hover, body .wrap.godo2023 .my-cart-tbl .negative.cart-btn:hover, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.negative:hover, body .wrap.godo2023 .modal .negative.btn-primary:hover, body .wrap.godo2023 .modal .negative.btn-semi:hover, body .wrap.godo2023 .modal .negative.btn-outline-primary:hover {
    border-color: #909090;
    background: #efefef;
}

.btnSt.negative:active, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.negative:active, body .wrap.godo2023 .my-cart-tbl .negative.cart-btn:active, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.negative:active, body .wrap.godo2023 .modal .negative.btn-primary:active, body .wrap.godo2023 .modal .negative.btn-semi:active, body .wrap.godo2023 .modal .negative.btn-outline-primary:active {
    border-color: #909090;
    background: #efefef;
}

.btnSt.negative[disabled], body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.negative[disabled], body .wrap.godo2023 .my-cart-tbl .negative.cart-btn[disabled], body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.negative[disabled], body .wrap.godo2023 .modal .negative.btn-primary[disabled], body .wrap.godo2023 .modal .negative.btn-semi[disabled], body .wrap.godo2023 .modal .negative.btn-outline-primary[disabled] {
    color: #fff;
    border-color: #e1e1e1;
    background: #e1e1e1;
}

.btnSt.secondary1, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary1, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal a.btn-outline-primary, body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap a.btn-outline-primary, body .wrap.godo2023 .my-cart-tbl .secondary1.cart-btn, body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-sold-out:not(.cart-btn-other),
body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .cart-btn.cart-btn-talk,
body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .modal .cart-btn.btn-outline-primary, body .wrap.godo2023 .modal .my-cart-tbl .all-btns-wrap .cart-btn.btn-outline-primary, body .wrap.godo2023 .my-cart-tbl .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .my-cart-tbl .group-total-btn > a.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary1, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-outline-primary, body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.btn-outline-primary, body .wrap.godo2023 .modal .secondary1.btn-primary, body .wrap.godo2023 .modal .secondary1.btn-semi, body .wrap.godo2023 .modal .btn-outline-primary {
    color: #4130df;
    border-color: #4130df;
    background: #fff;
}

.btnSt.secondary1:hover, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary1:hover, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:hover:not(.btn-bg), body .wrap.godo2023 .my-cart-tbl .secondary1.cart-btn:hover, body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-talk:hover, body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-sold-out:hover:not(.cart-btn-other), body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary1:hover, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-outline-primary:hover, body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.btn-outline-primary:hover, body .wrap.godo2023 .modal .secondary1.btn-primary:hover, body .wrap.godo2023 .modal .secondary1.btn-semi:hover, body .wrap.godo2023 .modal .btn-outline-primary:hover {
    background: #efeeff;
}

.btnSt.secondary1:active, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary1:active, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:active:not(.btn-bg), body .wrap.godo2023 .my-cart-tbl .secondary1.cart-btn:active, body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-talk:active, body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-sold-out:active:not(.cart-btn-other), body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary1:active, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-outline-primary:active, body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.btn-outline-primary:active, body .wrap.godo2023 .modal .secondary1.btn-primary:active, body .wrap.godo2023 .modal .secondary1.btn-semi:active, body .wrap.godo2023 .modal .btn-outline-primary:active {
    color: #8d83ec;
    border-color: #8d83ec;
}

.btnSt.secondary1[disabled], body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary1[disabled], body .wrap.godo2023 .cart-empty-wrap .btns-wrap a[disabled]:not(.btn-bg), body .wrap.godo2023 .my-cart-tbl .secondary1.cart-btn[disabled], body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-talk[disabled], body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-sold-out[disabled]:not(.cart-btn-other), body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary1[disabled], body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-outline-primary[disabled], body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.btn-outline-primary[disabled], body .wrap.godo2023 .modal .secondary1.btn-primary[disabled], body .wrap.godo2023 .modal .secondary1.btn-semi[disabled], body .wrap.godo2023 .modal .btn-outline-primary[disabled] {
    color: #fff;
    border-color: #e1e1e1;
    background: #e1e1e1;
}

.btnSt.secondary2, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary2, body .wrap.godo2023 .my-cart-tbl .secondary2.cart-btn, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary2, body .wrap.godo2023 .modal .secondary2.btn-primary, body .wrap.godo2023 .modal .secondary2.btn-semi, body .wrap.godo2023 .modal .secondary2.btn-outline-primary {
    color: #666;
    border-color: #909090;
    background: #fff;
}

.btnSt.secondary2:hover, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary2:hover, body .wrap.godo2023 .my-cart-tbl .secondary2.cart-btn:hover, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary2:hover, body .wrap.godo2023 .modal .secondary2.btn-primary:hover, body .wrap.godo2023 .modal .secondary2.btn-semi:hover, body .wrap.godo2023 .modal .secondary2.btn-outline-primary:hover, .btnSt.secondary2:active, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary2:active, body .wrap.godo2023 .my-cart-tbl .secondary2.cart-btn:active, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary2:active, body .wrap.godo2023 .modal .secondary2.btn-primary:active, body .wrap.godo2023 .modal .secondary2.btn-semi:active, body .wrap.godo2023 .modal .secondary2.btn-outline-primary:active {
    color: #8d83ec;
    border-color: #8d83ec;
}

.btnSt.secondary2[disabled], body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary2[disabled], body .wrap.godo2023 .my-cart-tbl .secondary2.cart-btn[disabled], body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary2[disabled], body .wrap.godo2023 .modal .secondary2.btn-primary[disabled], body .wrap.godo2023 .modal .secondary2.btn-semi[disabled], body .wrap.godo2023 .modal .secondary2.btn-outline-primary[disabled] {
    color: #fff;
    border-color: #e1e1e1;
    background: #e1e1e1;
}

.btnSt.secondary3, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary3, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal a.btn-semi, body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap a.btn-semi, body .wrap.godo2023 .my-cart-tbl .secondary3.cart-btn, body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .modal .cart-btn.btn-semi, body .wrap.godo2023 .modal .my-cart-tbl .all-btns-wrap .cart-btn.btn-semi, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary3, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-semi, body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.btn-semi, body .wrap.godo2023 .modal .secondary3.btn-primary, body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .secondary3.btn-outline-primary {
    color: #4130df;
    border-color: #efeeff;
    background: #efeeff;
}

.btnSt.secondary3:hover, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary3:hover, body .wrap.godo2023 .my-cart-tbl .secondary3.cart-btn:hover, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary3:hover, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-semi:hover, body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.btn-semi:hover, body .wrap.godo2023 .modal .secondary3.btn-primary:hover, body .wrap.godo2023 .modal .btn-semi:hover, body .wrap.godo2023 .modal .secondary3.btn-outline-primary:hover, .btnSt.secondary3:active, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary3:active, body .wrap.godo2023 .my-cart-tbl .secondary3.cart-btn:active, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary3:active, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-semi:active, body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.btn-semi:active, body .wrap.godo2023 .modal .secondary3.btn-primary:active, body .wrap.godo2023 .modal .btn-semi:active, body .wrap.godo2023 .modal .secondary3.btn-outline-primary:active {
    border-color: #d9d6f9;
    background: #d9d6f9;
}

.btnSt.secondary3[disabled], body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary3[disabled], body .wrap.godo2023 .my-cart-tbl .secondary3.cart-btn[disabled], body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary3[disabled], body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-semi[disabled], body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.btn-semi[disabled], body .wrap.godo2023 .modal .secondary3.btn-primary[disabled], body .wrap.godo2023 .modal .btn-semi[disabled], body .wrap.godo2023 .modal .secondary3.btn-outline-primary[disabled] {
    color: #fff;
    border-color: #e1e1e1;
    background: #e1e1e1;
}

.btnSt.secondary4, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary4, body .wrap.godo2023 .my-cart-tbl .secondary4.cart-btn, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary4, body .wrap.godo2023 .modal .secondary4.btn-primary, body .wrap.godo2023 .modal .secondary4.btn-semi, body .wrap.godo2023 .modal .secondary4.btn-outline-primary {
    color: #fff;
    border-color: #75737f;
    background: #75737f;
}

.btnSt.secondary4:hover, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary4:hover, body .wrap.godo2023 .my-cart-tbl .secondary4.cart-btn:hover, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary4:hover, body .wrap.godo2023 .modal .secondary4.btn-primary:hover, body .wrap.godo2023 .modal .secondary4.btn-semi:hover, body .wrap.godo2023 .modal .secondary4.btn-outline-primary:hover, .btnSt.secondary4:active, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary4:active, body .wrap.godo2023 .my-cart-tbl .secondary4.cart-btn:active, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary4:active, body .wrap.godo2023 .modal .secondary4.btn-primary:active, body .wrap.godo2023 .modal .secondary4.btn-semi:active, body .wrap.godo2023 .modal .secondary4.btn-outline-primary:active {
    color: #444;
    border-color: #bfbfbf;
    background: #bfbfbf;
}

.btnSt.secondary4[disabled], body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary4[disabled], body .wrap.godo2023 .my-cart-tbl .secondary4.cart-btn[disabled], body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary4[disabled], body .wrap.godo2023 .modal .secondary4.btn-primary[disabled], body .wrap.godo2023 .modal .secondary4.btn-semi[disabled], body .wrap.godo2023 .modal .secondary4.btn-outline-primary[disabled] {
    color: #fff;
    border-color: #e1e1e1;
    background: #e1e1e1;
}

.btnSt.sm, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.sm, body .wrap.godo2023 .my-cart-tbl .sm.cart-btn, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.sm, body .wrap.godo2023 .modal .sm.btn-primary, body .wrap.godo2023 .modal .sm.btn-semi, body .wrap.godo2023 .modal .sm.btn-outline-primary {
    height: 33px;
    padding: 5px 11px;
    font-size: 13px;
    line-height: 23px;
}

.btnSt.lg, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.lg, body .wrap.godo2023 .my-cart-tbl .lg.cart-btn, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.lg, body .wrap.godo2023 .modal .lg.btn-primary, body .wrap.godo2023 .modal .lg.btn-semi, body .wrap.godo2023 .modal .lg.btn-outline-primary {
    height: 60px;
    padding: 17px 12px;
    font-size: 16px;
    line-height: 26px;
}

.btnSt.xl, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .my-cart-tbl .cart-btn,
body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .cart-btn, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .modal .xl.btn-primary, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-primary, body .wrap.godo2023 .modal .xl.btn-semi, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-semi, body .wrap.godo2023 .modal .xl.btn-outline-primary, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-outline-primary {
    height: 68px;
    padding: 20px;
    font-size: 18px;
    line-height: 28px;
}

.btnSt.more, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.more, body .wrap.godo2023 .my-cart-tbl .more.cart-btn, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.more, body .wrap.godo2023 .modal .more.btn-primary, body .wrap.godo2023 .modal .more.btn-semi, body .wrap.godo2023 .modal .more.btn-outline-primary {
    column-gap: 4px;
    padding: 0 24px 0 27px;
    height: 48px;
    border-color: #e1e1e1;
    background: #fff;
    color: #444;
    font-weight: 500;
    position: relative;
}

.btnSt.more::before, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.more::before, body .wrap.godo2023 .my-cart-tbl .more.cart-btn::before, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.more::before, body .wrap.godo2023 .modal .more.btn-primary::before, body .wrap.godo2023 .modal .more.btn-semi::before, body .wrap.godo2023 .modal .more.btn-outline-primary::before {
    position: absolute;
    right: 22px;
    top: 50%;
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background: url(../img/godo2023/ico_plus_black.svg) no-repeat center;
    background-size: cover;
}

.btnSt.more i, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.more i, body .wrap.godo2023 .my-cart-tbl .more.cart-btn i, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.more i, body .wrap.godo2023 .modal .more.btn-primary i, body .wrap.godo2023 .modal .more.btn-semi i, body .wrap.godo2023 .modal .more.btn-outline-primary i {
    width: 16px;
    height: 16px;
}

.btnSt.more i img, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.more i img, body .wrap.godo2023 .my-cart-tbl .more.cart-btn i img, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.more i img, body .wrap.godo2023 .modal .more.btn-primary i img, body .wrap.godo2023 .modal .more.btn-semi i img, body .wrap.godo2023 .modal .more.btn-outline-primary i img {
    vertical-align: top;
}

.btnSt.more:hover, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.more:hover, body .wrap.godo2023 .my-cart-tbl .more.cart-btn:hover, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.more:hover, body .wrap.godo2023 .modal .more.btn-primary:hover, body .wrap.godo2023 .modal .more.btn-semi:hover, body .wrap.godo2023 .modal .more.btn-outline-primary:hover, .btnSt.more:focus, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.more:focus, body .wrap.godo2023 .my-cart-tbl .more.cart-btn:focus, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.more:focus, body .wrap.godo2023 .modal .more.btn-primary:focus, body .wrap.godo2023 .modal .more.btn-semi:focus, body .wrap.godo2023 .modal .more.btn-outline-primary:focus {
    border-color: #8d83ec;
    color: #8d83ec;
}

.btnSt.more:hover::before, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.more:hover::before, body .wrap.godo2023 .my-cart-tbl .more.cart-btn:hover::before, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.more:hover::before, body .wrap.godo2023 .modal .more.btn-primary:hover::before, body .wrap.godo2023 .modal .more.btn-semi:hover::before, body .wrap.godo2023 .modal .more.btn-outline-primary:hover::before, .btnSt.more:focus::before, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.more:focus::before, body .wrap.godo2023 .my-cart-tbl .more.cart-btn:focus::before, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.more:focus::before, body .wrap.godo2023 .modal .more.btn-primary:focus::before, body .wrap.godo2023 .modal .more.btn-semi:focus::before, body .wrap.godo2023 .modal .more.btn-outline-primary:focus::before {
    background: url(../img/godo2023/ico_plus_purple.svg) no-repeat center;
}

.btnSt.more:active, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.more:active, body .wrap.godo2023 .my-cart-tbl .more.cart-btn:active, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.more:active, body .wrap.godo2023 .modal .more.btn-primary:active, body .wrap.godo2023 .modal .more.btn-semi:active, body .wrap.godo2023 .modal .more.btn-outline-primary:active {
    color: #8d83ec;
    border-color: #8d83ec;
    box-shadow: 0px 2px 4px 0px rgba(65, 48, 223, 0.18);
}

.btnSt.more[disabled], body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.more[disabled], body .wrap.godo2023 .my-cart-tbl .more.cart-btn[disabled], body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.more[disabled], body .wrap.godo2023 .modal .more.btn-primary[disabled], body .wrap.godo2023 .modal .more.btn-semi[disabled], body .wrap.godo2023 .modal .more.btn-outline-primary[disabled] {
    border-color: #e1e1e1;
    background-color: #e1e1e1;
    color: #fff;
    box-shadow: none;
}

.btnSt.more[disabled]::before, body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.more[disabled]::before, body .wrap.godo2023 .my-cart-tbl .more.cart-btn[disabled]::before, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.more[disabled]::before, body .wrap.godo2023 .modal .more.btn-primary[disabled]::before, body .wrap.godo2023 .modal .more.btn-semi[disabled]::before, body .wrap.godo2023 .modal .more.btn-outline-primary[disabled]::before {
    background: url(../img/godo2023/ico_plus_white.svg) no-repeat center;
}

.arrLink, .arrLinkGray {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #4130df;
}

.arrLink:after, .arrLinkGray:after {
    content: '';
    display: inline-block;
    height: 12px;
    width: 12px;
    vertical-align: -1px;
    background: url("../img/godo2023/ico_link_arr.svg") no-repeat 50% 50%;
}

.arrLinkGray {
    color: #444;
}

.arrLinkGray:after {
    background-image: url("../img/godo2023/ico_link_arr_gray.svg");
}

.disabled .arrLinkGray {
    color: #bfbfbf;
}

.disabled .arrLinkGray:after {
    background-image: url("../img/godo2023/ico_link_arr_gray_sm.svg");
}

.flexBox, .flexEndBox, .timeSelInfo, .quickBox, .storeSearch, .visitSelect,
.visitInfo, .storeTitBox, .instBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btnWrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
}

.btnWrap.sticky {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
}

.btnWrap .btnSt, .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .btnWrap a, .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .btnWrap .cart-btn, .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .btnWrap .group-total-btn > a, .btnWrap body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .btnWrap .btn-primary, .btnWrap body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .btnWrap .btn-semi, .btnWrap body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .btnWrap .btn-outline-primary {
    flex: 1 1 100%;
    max-width: 720px;
}

.btnWrap .btnSt.negative, .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.negative, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .btnWrap a.negative, .btnWrap body .wrap.godo2023 .my-cart-tbl .negative.cart-btn, body .wrap.godo2023 .my-cart-tbl .btnWrap .negative.cart-btn, .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.negative, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .btnWrap .group-total-btn > a.negative, .btnWrap body .wrap.godo2023 .modal .negative.btn-primary, body .wrap.godo2023 .modal .btnWrap .negative.btn-primary, .btnWrap body .wrap.godo2023 .modal .negative.btn-semi, body .wrap.godo2023 .modal .btnWrap .negative.btn-semi, .btnWrap body .wrap.godo2023 .modal .negative.btn-outline-primary, body .wrap.godo2023 .modal .btnWrap .negative.btn-outline-primary, .btnWrap .btnSt.secondary1, .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary1, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .btnWrap a.secondary1, .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .btnWrap a:not(.btn-bg), .btnWrap body .wrap.godo2023 .my-cart-tbl .secondary1.cart-btn, body .wrap.godo2023 .my-cart-tbl .btnWrap .secondary1.cart-btn, .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .btnWrap .cart-btn.cart-btn-talk, .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .btnWrap .cart-btn.cart-btn-sold-out:not(.cart-btn-other), .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary1, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .btnWrap .group-total-btn > a.secondary1, .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-outline-primary, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .btnWrap .group-total-btn > a.btn-outline-primary, .btnWrap body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.btn-outline-primary, body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .btnWrap .group-total-btn > a.btn-outline-primary, .btnWrap body .wrap.godo2023 .modal .secondary1.btn-primary, body .wrap.godo2023 .modal .btnWrap .secondary1.btn-primary, .btnWrap body .wrap.godo2023 .modal .secondary1.btn-semi, body .wrap.godo2023 .modal .btnWrap .secondary1.btn-semi, .btnWrap body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .btnWrap .btn-outline-primary, .btnWrap .btnSt.secondary2, .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary2, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .btnWrap a.secondary2, .btnWrap body .wrap.godo2023 .my-cart-tbl .secondary2.cart-btn, body .wrap.godo2023 .my-cart-tbl .btnWrap .secondary2.cart-btn, .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary2, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .btnWrap .group-total-btn > a.secondary2, .btnWrap body .wrap.godo2023 .modal .secondary2.btn-primary, body .wrap.godo2023 .modal .btnWrap .secondary2.btn-primary, .btnWrap body .wrap.godo2023 .modal .secondary2.btn-semi, body .wrap.godo2023 .modal .btnWrap .secondary2.btn-semi, .btnWrap body .wrap.godo2023 .modal .secondary2.btn-outline-primary, body .wrap.godo2023 .modal .btnWrap .secondary2.btn-outline-primary, .btnWrap .btnSt.secondary3, .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary3, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .btnWrap a.secondary3, .btnWrap body .wrap.godo2023 .my-cart-tbl .secondary3.cart-btn, body .wrap.godo2023 .my-cart-tbl .btnWrap .secondary3.cart-btn, .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary3, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .btnWrap .group-total-btn > a.secondary3, .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-semi, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .btnWrap .group-total-btn > a.btn-semi, .btnWrap body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.btn-semi, body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .btnWrap .group-total-btn > a.btn-semi, .btnWrap body .wrap.godo2023 .modal .secondary3.btn-primary, body .wrap.godo2023 .modal .btnWrap .secondary3.btn-primary, .btnWrap body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .btnWrap .btn-semi, .btnWrap body .wrap.godo2023 .modal .secondary3.btn-outline-primary, body .wrap.godo2023 .modal .btnWrap .secondary3.btn-outline-primary {
    flex: 0 0 200px;
    min-width: 200px;
}

.btnWrap .btnSt.lg, .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.lg, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .btnWrap a.lg, .btnWrap body .wrap.godo2023 .my-cart-tbl .lg.cart-btn, body .wrap.godo2023 .my-cart-tbl .btnWrap .lg.cart-btn, .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.lg, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .btnWrap .group-total-btn > a.lg, .btnWrap body .wrap.godo2023 .modal .lg.btn-primary, body .wrap.godo2023 .modal .btnWrap .lg.btn-primary, .btnWrap body .wrap.godo2023 .modal .lg.btn-semi, body .wrap.godo2023 .modal .btnWrap .lg.btn-semi, .btnWrap body .wrap.godo2023 .modal .lg.btn-outline-primary, body .wrap.godo2023 .modal .btnWrap .lg.btn-outline-primary {
    min-width: 160px;
}

.btnWrap .btnSt.xl, .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .btnWrap a, .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .btnWrap .cart-btn, .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .btnWrap .group-total-btn > a, .btnWrap body .wrap.godo2023 .modal .xl.btn-primary, body .wrap.godo2023 .modal .btnWrap .xl.btn-primary, .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-primary, .btnWrap body .wrap.godo2023 .modal .xl.btn-semi, body .wrap.godo2023 .modal .btnWrap .xl.btn-semi, .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-semi, .btnWrap body .wrap.godo2023 .modal .xl.btn-outline-primary, body .wrap.godo2023 .modal .btnWrap .xl.btn-outline-primary, .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-outline-primary {
    min-width: 240px;
}

.modal .btnWrap .btnSt, .modal .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .modal .btnWrap a, .modal .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .modal .btnWrap .cart-btn, .modal .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .btnWrap .group-total-btn > a, body .wrap.godo2023 .modal .btnWrap .btn-primary, body .wrap.godo2023 .modal .btnWrap .btn-semi, body .wrap.godo2023 .modal .btnWrap .btn-outline-primary {
    flex: 0 0 50%;
    max-width: 200px;
}

.productInfo {
    display: flex;
    padding: 20px;
    border-radius: 6px;
    align-items: center;
    flex-direction: column;
    background: #f7f7f7;
    font-size: 14px;
    line-height: 24px;
}

.productInfo .productBox {
    display: flex;
    padding: 0 0 20px;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.productInfo .productBox .img {
    width: 140px;
    height: 140px;
}

.productInfo .productBox .img img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: top;
}

.productInfo .productBox .name {
    margin-top: 12px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.productInfo .productBox .list {
    display: flex;
    margin-top: 12px;
}

.productInfo .productBox .list li {
    padding: 0 12px 0 13px;
    color: #666;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    max-width: 165px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.productInfo .productBox .list li .key {
    display: none;
}

.productInfo .productBox .list li + li {
    position: relative;
}

.productInfo .productBox .list li + li:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 14px;
    margin-top: -7px;
    background: #bfbfbf;
}

.productInfo .productBox .planName {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #000;
}

.productInfo .optionBox {
    position: relative;
    width: 100%;
    border-radius: 6px;
    background: #fff;
}

.productInfo .optionBox .title {
    display: flex;
    padding: 12px 20px;
    box-sizing: border-box;
    justify-content: center;
    column-gap: 10px;
    font-weight: 500;
}

.productInfo .optionBox .title .val {
    margin-left: auto;
    color: #ff0000;
}

.productInfo .optionBox .key {
    flex: 1 1 60%;
    font-weight: 500;
}

.productInfo .optionBox .val {
    font-weight: 400;
}

.productInfo .optionBox .val em {
    font-weight: 700;
}

.productInfo .optionBox .desc {
    width: 100%;
    text-align: left;
    font-size: 12px;
    line-height: 18px;
    color: #909090;
    font-weight: 400 !important;
}

.productInfo .priceInfo {
    padding: 12px 20px;
}

.productInfo .priceInfo li {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

.productInfo .priceInfo li ul {
    margin-top: 4px;
    width: 100%;
}

.productInfo .priceInfo li ul li .key {
    font-size: 13px;
    font-weight: 400;
    color: #666;
}

.productInfo .priceInfo li ul li .val {
    color: #444;
    font-weight: 400;
}

.productInfo .priceInfo li ul li .val em {
    font-weight: 400;
}

.productInfo .priceInfo li ul li + li {
    margin-top: 4px;
}

.productInfo .priceInfo li.sm {
    padding-left: 12px;
    line-height: 23px;
}

.productInfo .priceInfo li.sm .key {
    color: #909090;
    font-size: 12px;
}

.productInfo .priceInfo li.sm .val {
    font-size: 13px;
    color: #909090;
}

.productInfo .priceInfo > li {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #efefef;
}

.productInfo .priceInfo > li + li {
    border-top: 1px solid #efefef;
}

.productInfo .priceInfo > li ~ li.on {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}

.productInfo .priceInfo > li > .val {
    color: #4130df;
}

.productInfo .priceInfo > li:first-child .val {
    color: #ff0000;
}

.productInfo .priceInfo > li:first-child {
    border: none;
    margin-top: 0;
    padding-top: 0;
}

.productInfo .priceInfo > li:first-child.ocliDpNone + li {
    border: none;
    margin-top: 0;
    padding-top: 0;
}

.productInfo .priceInfo .addService li {
    font-size: 14px;
    line-height: 24px;
}

.productInfo .priceInfo .addService li ~ li {
    margin-top: 8px;
}

.productInfo .priceInfo .addService .key {
    font-weight: 500;
    color: #000;
}

.productInfo .priceInfo .addService .val {
    color: #4130df;
}

.productInfo .priceInfo .addService .val em {
    font-weight: 700;
}

.productInfo .btnOpen {
    display: none !important;
    width: 100%;
    height: 28px;
    text-indent: -9999px;
    overflow: hidden;
    background: url(../img/godo2023/ico_down.svg) no-repeat center 0/17px;
}

.productInfo.open .optionBox .desc {
    display: block;
}

.productInfo.open .btnOpen {
    margin-top: 12px;
    background-position-y: 12px;
    transform: rotate(180deg);
}

.description, .cardDescription {
    display: flex;
    margin-top: 8px;
    font-size: 16px;
    line-height: 26px;
    color: #909090;
}

.description i, .cardDescription i {
    width: 12px;
    height: 12px;
    margin: 7px 4px 0 0;
}

.description i img, .cardDescription i img {
    vertical-align: top;
}

.description i.more, .cardDescription i.more {
    margin: 2px 4px 0;
    width: 20px;
    height: 20px;
}

.description + .formItemRow, .cardDescription + .formItemRow {
    margin-top: 24px;
}

.textInfo, .textInfoBlue, .textInfoRed, .textInfoBlack, .textInfoGray, .textInfoBlNline {
    display: flex;
    align-items: center;
    margin-top: 20px;
    color: #909090;
    font-size: 13px;
    line-height: 23px;
}

.textInfo:before, .textInfoBlue:before, .textInfoRed:before, .textInfoBlack:before, .textInfoGray:before, .textInfoBlNline:before {
    content: '!';
    display: inline-block;
    height: 16px;
    width: 16px;
    text-indent: -9999px;
    overflow: hidden;
    margin-right: 4px;
    background: url("../img/godo2023/ico_text_info.svg") no-repeat center/contain;
}

.textInfo.agc, .agc.textInfoBlue, .agc.textInfoRed, .agc.textInfoBlack, .agc.textInfoGray, .agc.textInfoBlNline {
    justify-content: center;
}

.textInfo.md, .md.textInfoBlue, .md.textInfoRed, .md.textInfoBlack, .md.textInfoGray, .md.textInfoBlNline {
    font-size: 14px;
    line-height: 24px;
}

.btnWrap.mt80 + .textInfo.agc, .btnWrap.mt80 + .agc.textInfoBlue, .btnWrap.mt80 + .agc.textInfoRed, .btnWrap.mt80 + .agc.textInfoBlack, .btnWrap.mt80 + .agc.textInfoGray, .btnWrap.mt80 + .agc.textInfoBlNline {
    font-weight: 500;
}

.fileItem {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 1px;
    border-bottom: 1px solid #e1e1e1;
    column-gap: 10px;
}

.fileItem .val {
    display: block;
    flex: 1 1 auto;
    padding: 13px 0;
    width: 100%;
    height: 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 40px;
    color: #000;
}

.fileItem input {
    position: absolute;
    top: 10px;
    right: 0;
    width: 120px;
    height: calc(100% - 20px);
    opacity: 0;
    cursor: pointer;
}

.fileItem input::-webkit-file-upload-button,
.fileItem input::file-selector-button {
    cursor: pointer;
}

.fileItem .inputUtil {
    display: flex;
    align-items: center;
    column-gap: 10px;
    border-radius: 100%;
}

.fileItem .inputUtil .del {
    z-index: 9;
    display: none;
    width: 30px;
    height: 30px;
    text-indent: -999px;
    overflow: hidden;
    background: url(../img/godo2023/ico_delete.svg) no-repeat center/20px 20px;
}

.fileItem.placeholder .val {
    color: #bfbfbf;
}

.fileItem:has(input:focus) {
    padding-bottom: 0;
    border-bottom: 2px solid #4130df;
}

.fileItem:has(input[disabled]) .val, .fileItem:has(input[readonly]) .val {
    color: #909090;
    background: #fff;
}

.error .fileItem, .fileItem.error {
    padding-bottom: 0;
    border-bottom: 2px solid #ff0000;
}

.headerStep, .headerStepPS {
    display: flex;
    margin-left: auto;
    counter-reset: section;
}

.headerStep li, .headerStepPS li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 8px;
    padding: 0 10px;
}

.headerStep li span, .headerStepPS li span {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #bfbfbf;
}

.headerStep li:before, .headerStepPS li:before {
    z-index: 2;
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 700;
    color: #bfbfbf;
    counter-increment: section;
    border: 1px solid #aaa3ec;
    border-radius: 50%;
    content: '완료';
    overflow: hidden;
    text-indent: -9999px;
    background: #aaa3ec url("../img/godo2023/ico_step_checked.svg") no-repeat 50%;
}

.headerStep li:after, .headerStepPS li:after {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e1e1;
}

.headerStep li:first-child:after, .headerStepPS li:first-child:after {
    left: 50%;
}

.headerStep li:last-child:after, .headerStepPS li:last-child:after {
    right: 50%;
}

.headerStep li.on span, .headerStepPS li.on span {
    color: #4130df;
    font-weight: 700;
}

.headerStep li.on:before, .headerStepPS li.on:before {
    color: #fff;
    text-indent: 0;
    content: counter(section);
    border-color: #4130df;
    background: #4130df;
}

.headerStep li.on ~ li:before, .headerStepPS li.on ~ li:before {
    text-indent: 0;
    content: counter(section);
    border-color: #e1e1e1;
    background: #fff;
}

.headerStep li:has(~ .on):before, .headerStepPS li:has(~ .on):before {
    border: 1px solid #aaa3ec !important;
    background: #aaa3ec url("../img/godo2023/ico_step_checked.svg") no-repeat 50% !important;
}

.headerStep li.nostep:before, .headerStepPS li.nostep:before {
    text-indent: 0;
    content: '' !important;
    border-color: #e1e1e1;
    background: #fff linear-gradient(-45deg, #fff 0, #fff 49%, #e1e1e1 50%, #e1e1e1 51%, #fff 52%, #fff 100%) !important;
}

.compareRatePlans {
    display: none;
    z-index: 2;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: -35px;
    padding-top: 35px;
}

.compareRatePlans .inner {
    position: relative;
    padding: 28px 0;
    box-sizing: border-box;
    background: #666;
}

.compareRatePlans .lGrid {
    display: flex;
    column-gap: 12px;
}

.compareRatePlans .lGrid ul {
    flex: 1 1 auto;
    display: flex;
    column-gap: 12px;
}

.compareRatePlans .lGrid ul li {
    flex: 1 1 50%;
    height: 100%;
}

.compareRatePlans .lGrid .btnSt, .compareRatePlans .lGrid body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .compareRatePlans .lGrid a, .compareRatePlans .lGrid body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .compareRatePlans .lGrid .cart-btn, .compareRatePlans .lGrid body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .compareRatePlans .lGrid .group-total-btn > a, .compareRatePlans .lGrid body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .compareRatePlans .lGrid .btn-primary, .compareRatePlans .lGrid body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .compareRatePlans .lGrid .btn-semi, .compareRatePlans .lGrid body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .compareRatePlans .lGrid .btn-outline-primary {
    flex: 0 0 200px;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    height: auto;
    border-radius: 8px;
}

.compareRatePlans .close {
    position: absolute;
    bottom: 100%;
    left: calc(50% - 60px);
    text-indent: -9999px;
    overflow: hidden;
    height: 35px;
    width: 120px;
    background: url("../img/godo2023/ico_compare_close.svg");
}

.compareRatePlans .compareItem {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 28px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #fff;
}

.compareRatePlans .compareItem .text {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #000;
}

.compareRatePlans .compareItem .text p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #666;
}

.compareRatePlans .compareItem .price {
    color: #ff4d4d;
    line-height: 26px;
}

.compareRatePlans .compareItem .price strong {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
}

.compareRatePlans .compareItem .price span {
    display: inline-block;
    font-size: 14px;
}

.compareRatePlans .compareItem .delete {
    position: absolute;
    top: 13px;
    right: 13px;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    text-indent: -9999px;
    overflow: hidden;
    background: url("../img/godo2023/ico_compare_item_close.svg") no-repeat 50% 50%;
}

.compareRatePlans .compareItem.compareTarget {
    border-color: transparent;
}

.compareRatePlans .compareItem:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #4130df;
    border-radius: 8px;
    pointer-events: none;
}

.compareRatePlans .compareItem.compareTarget:after {
    border: 1px solid #efefef;
}

.compareRatePlans .addBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    width: 100%;
    height: 100%;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #fff;
    border-radius: 8px;
    border: 1px dashed #bfbfbf;
    background: rgba(255, 255, 255, 0.08);
}

.compareRatePlans .addBtn:before {
    content: '';
    height: 20px;
    width: 20px;
    background: url("../img/godo2023/ico_compare_add.svg");
}

.searchFilter {
    margin-top: 14px;
    padding: 10px 0 24px;
    background: #fff;
    border-bottom: 1px solid #efefef;
}

.searchSliderTitle {
    z-index: 10;
    position: sticky;
    top: 0;
    margin-top: 0;
    padding: 20px 0 21px;
    background: #fff;
    transition: background-color 100ms ease-in-out 0s;
}

.isSticky .searchSliderTitle {
    background: #fff;
}

.controllerArea .irs--flat .irs-handle {
    top: 5px;
    width: 20px;
    height: 20px;
    background: url(../img/godo2023/img_graph_control.png) no-repeat 0 0;
    background-size: cover;
}

.controllerArea .irs--flat .irs-grid-pol {
    display: none;
}

.controllerArea .irs {
    font-family: Noto Sans KR, AppleSDGothicNeo-Medium, sans-serif;
}

.controllerArea .irs--flat .irs-handle > i:first-child {
    display: none;
}

.controllerArea .irs--flat .irs-bar {
    height: 0.4rem;
    background: #4130df;
}

.controllerArea .irs--flat .irs-line {
    top: 0.8rem;
    height: 0.4rem;
    background: #d5d5d5;
    margin: 0 1rem;
}

.controllerArea .irs--flat .irs-from,
.controllerArea .irs--flat .irs-to,
.controllerArea .irs--flat .irs-single {
    display: none;
}

.controllerArea .irs--flat .irs-min,
.controllerArea .irs--flat .irs-max {
    display: none;
}

.controllerArea .irs--flat.irs-with-grid {
    height: 3.4rem;
}

.controllerArea .irs--flat .irs-bar {
    top: 0.8rem;
}

.controllerArea .irs--flat .irs-grid-text {
    top: -7px;
    display: block;
    margin-left: -20px !important;
    font-size: 14px;
    color: #909090;
    font-weight: 400;
    line-height: 24px;
}

.controllerArea .irs--flat .irs-grid-text.on {
    color: #4130df;
}

.controllerArea .irs-grid-text.js-grid-text-0 {
    left: -12px !important;
    margin-left: 0 !important;
}

.controllerArea .irs-grid-text:last-child {
    left: initial !important;
    right: 0;
    margin-right: -12px;
}

.controllerArea #grControl01 {
    position: absolute;
    left: -9999rem;
    top: -9999rem;
}

.controllerArea #grControl02 {
    position: absolute;
    left: -9999rem;
    top: -9999rem;
}

.controllerBox {
    background-color: #f5f5f7;
}

.controllerBox .controllerBoxWrap {
    padding: 2rem;
}

.controllerBox .controllerBoxWrap .title {
    color: #000;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 2.4rem;
}

.controllerBox .controllerBoxWrap .name {
    display: block;
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin-bottom: 0.4rem;
    color: #000;
    font-weight: 500;
}

.controllerBox .controllerBoxWrap > .controllerArea:after {
    display: block;
    content: '';
    clear: both;
}

.controllerBox .controllerBoxWrap > .controllerArea > .irs {
    float: right;
    width: calc(100% - 84px);
}

.controllerBox .controllerBoxWrap > .controllerArea > .name {
    float: left;
    width: 84px;
}

.controllerBox .controllerBoxWrap > .controllerArea > .controllGroup {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.controllerBox .controllerBoxWrap > .controllerArea > .controllGroup .formRadio {
    width: 100%;
}

.controllerBox .controllerBoxWrap > .controllerArea > .controllGroup .formRadio .text {
    font-size: 18px;
    line-height: 28px;
    color: #909090;
}

.controllerBox .controllerBoxWrap > .controllerArea > .controllGroup .formRadio:has(input:checked) .text {
    color: #000;
}

.controllerBox .controllerBoxWrap .controllerArea ~ .controllerArea {
    margin-top: 2rem;
}

.searchSliderWrap {
    position: relative;
    z-index: 10;
    padding: 28px;
    box-sizing: border-box;
    border-radius: 6px;
    background: #f7f7f7;
    opacity: 1;
    transition: height ease-in-out 0.2s;
}

.searchSliderWrap .modalTitle, .searchSliderWrap .dt {
    position: sticky;
    top: 0;
}

.searchSliderWrap .searchSlider {
    display: flex;
    row-gap: 20px;
}

.searchSliderWrap .searchSlider .sliderTitle {
    display: flex;
    width: 80px;
    justify-content: space-between;
    font-size: 16px;
    line-height: 26px;
}

.searchSliderWrap .searchSlider .sliderTitle .title {
    font-weight: 700;
    color: #000;
}

.searchSliderWrap .searchSlider .sliderTitle .value {
    color: #4130df;
}

.searchSliderWrap .searchSlider .slider {
    width: calc(100% - 80px);
    margin-top: 7px;
    padding: 0 10px;
}

.searchSliderWrap .searchSlider .slider .labelList {
    position: relative;
    height: 24px;
    margin-top: 10px;
}

.searchSliderWrap .searchSlider .slider .labelList li {
    position: absolute;
    top: 0;
    font-size: 14px;
    line-height: 24px;
    color: #909090;
}

.searchSliderWrap .searchSlider .slider .labelList li:nth-child(1) {
    left: 0;
}

.searchSliderWrap .searchSlider .slider .labelList li:nth-child(2) {
    left: 33.3%;
    transform: translateX(-50%);
}

.searchSliderWrap .searchSlider .slider .labelList li:nth-child(3) {
    left: 66.6%;
    transform: translateX(-50%);
}

.searchSliderWrap .searchSlider .slider .labelList li:nth-child(4) {
    right: 0;
}

.searchSliderWrap .searchSlider + .searchSlider {
    margin-top: 20px;
}

.isSticky .searchSliderWrap {
    opacity: 0;
}

.modalContent > .searchSticky, .modalContent > .comparisonSticky {
    z-index: 14;
}

.searchSticky, .comparisonSticky {
    z-index: 12;
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    /* 없는경우 스크립트 추가 2023-09-26 */
    /* 없는경우 스크립트 추가 2023-09-26 끝 */
}

.searchSticky.nothing, .nothing.comparisonSticky {
    top: 0 !important;
}

.searchSticky .subTitle, .comparisonSticky .subTitle {
    margin-top: 0;
    padding-bottom: 20px;
}

.searchSticky .searchSliderValue, .comparisonSticky .searchSliderValue {
    position: absolute;
    top: -91px;
    left: 0;
    width: 100%;
    opacity: 0;
    background: #fff;
}

.searchSticky .searchSliderValue .inner, .comparisonSticky .searchSliderValue .inner {
    display: flex;
    column-gap: 20px;
    padding: 28px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #f7f7f7;
}

.searchSticky .searchFilter, .comparisonSticky .searchFilter {
    margin-top: 0;
    padding-top: 24px;
}

.searchSticky .dataLabel, .comparisonSticky .dataLabel {
    height: 36px;
    padding: 0 10px;
    border-radius: 5px;
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    color: #4130df;
}

.isSticky .searchSticky .searchSliderValue, .isSticky .comparisonSticky .searchSliderValue {
    opacity: 1;
}

.ui-slider {
    position: relative;
    text-align: left;
    height: 8px;
    width: 100%;
    border-radius: 4px;
    background: #e1e1e1;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    top: calc(50% - 10px);
    cursor: pointer;
    -ms-touch-action: none;
    touch-action: none;
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.ui-slider .ui-slider-handle.ui-state-focus {
    z-index: 3;
}

.ui-slider .ui-slider-handle:focus-visible {
    border: 2px solid #4130df;
    outline: none;
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: 0;
    display: block;
    border: 0;
    height: 100%;
    background: #4130df;
}

.ui-slider .ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}

.ui-slider .ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

.noData {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 30px;
    text-align: center;
    border-radius: 8px;
    background: #f7f7f7;
}

.noData i {
    height: 60px;
    width: 60px;
    background: url("../img/godo2023/ico_nodata_default.svg") no-repeat 50%/40px 40px;
}

.noData i.phone {
    background-image: url("../img/godo2023/ico_nodata_phone.svg");
}

.noData i.bill {
    background-image: url("../img/godo2023/ico_nodata_bill.svg");
}

.noData p {
    font-size: 14px;
    line-height: 24px;
    color: #909090;
}

.noData.contactNoData {
    margin-top: 24px;
}

.noData.contactNoData .tit {
    display: block;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #000;
}

.noData.contactNoData p {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
}

/*
지은유 S ---------------------------------------------------------------------------------------------------------------------------------------------------
*/
.verificationCompleted {
    margin-top: 40px;
    padding: 20px;
    border-radius: 8px;
    background: #f7f7f7;
    text-align: center;
}

.verificationCompleted .txt {
    padding-left: 28px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #444;
    background: url(../img/godo2023/ico_checkbox_disabled.svg) no-repeat center left/20px 20px;
}

.selectCheckItem .selectOptions {
    padding: 0 12px;
}

.selectCheckItem .selectOptions .formCheckbox {
    padding: 12px 0;
    width: 100%;
}

.selectCheckItem .selectOptions .formCheckbox .text {
    text-align: left;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
    color: #444;
}

.selectCheckItem .selectOptions .formCheckbox:has(input:checked) .text {
    color: #4130df;
}

.searchBox {
    display: flex;
    padding: 13px 0;
    border-bottom: 1px solid #e1e1e1;
}

.searchBox .searchForm, .searchBox .searchFormLG {
    margin-left: auto;
}

.searchForm, .searchFormLG {
    display: flex;
}

.searchForm input, .searchFormLG input {
    outline: none;
    border: none;
    padding: 0 30px 0 20px;
    width: 400px;
    height: 54px;
    box-sizing: border-box;
    border-radius: 8px 0 0 8px;
    background: #f7f7f7;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #000;
}

.searchForm input::placeholder, .searchFormLG input::placeholder {
    color: #909090;
    font-weight: 400;
}

.searchForm button, .searchFormLG button {
    width: 54px;
    height: 54px;
    border-radius: 0 6px 6px 0;
    background: #8d83ec url(../img/godo2023/ico_search_white.svg) no-repeat center/20px;
    text-indent: -999px;
    overflow: hidden;
}

.searchForm.focus, .focus.searchFormLG, .searchForm:has(input:focus), .searchFormLG:has(input:focus) {
    /*input {
      &::placeholder {
        color: $G100;
      }
    }*/
}

.searchForm.disabled, .disabled.searchFormLG, .searchForm.readonly, .readonly.searchFormLG, .searchForm:has(input[disabled]), .searchFormLG:has(input[disabled]), .searchForm:has(input[readonly]), .searchFormLG:has(input[readonly]) {
    padding-bottom: 1px;
    border-bottom: 1px solid #e1e1e1;
}

.searchForm.disabled input, .disabled.searchFormLG input, .searchForm.readonly input, .readonly.searchFormLG input, .searchForm:has(input[disabled]) input, .searchFormLG:has(input[disabled]) input, .searchForm:has(input[readonly]) input, .searchFormLG:has(input[readonly]) input {
    color: #909090;
    background: #fff;
}

.error .searchForm, .error .searchFormLG, .searchForm.error, .error.searchFormLG {
    padding-bottom: 0;
    border-bottom: 2px solid #ff0000;
}

.tagFilterWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    border-bottom: 1px solid #e1e1e1;
}

.tagFilter {
    position: relative;
    display: inline-flex;
    padding: 8px;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    background: #f5f4fc;
    color: #4130df;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.tagFilter input {
    position: absolute;
    opacity: 0;
}

.tagFilter.checked {
    color: #fff;
    background: #4130df;
}

.tagFilter:has(input:focus-visible), .tagFilter:has(input:checked) {
    color: #fff;
    background: #4130df;
}

.reviewComent {
    margin-top: 60px;
}

.reviewComent .searchFilter {
    margin-top: 24px;
    padding: 13px 0;
    border-top: 1px solid #bfbfbf;
}

.reviewComent .searchFilter .selectItem, .reviewComent .searchFilter .selectCheckItem,
.reviewComent .searchFilter .selectCheckItem {
    height: 44px;
}

.reviewComent .searchFilter .selectItem .selectButton, .reviewComent .searchFilter .selectCheckItem .selectButton,
.reviewComent .searchFilter .selectCheckItem .selectButton {
    line-height: 42px;
    height: 42px;
    font-size: 16px;
}

.reviewComent .searchFilter .selectItem .selectOptions, .reviewComent .searchFilter .selectCheckItem .selectOptions,
.reviewComent .searchFilter .selectCheckItem .selectOptions {
    top: 44px;
}

.reviewComent .searchFilter .left {
    display: flex;
    column-gap: 24px;
}

.reviewComent .searchFilter .right {
    display: flex;
    align-items: center;
}

.reviewComent .searchFilter .icoBtn {
    display: flex;
    width: 44px;
    height: 44px;
    margin-left: 40px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    justify-content: center;
    align-items: center;
    text-indent: -999px;
    overflow: hidden;
    background: no-repeat center / 20px 20px;
}

.reviewComent .searchFilter .icoBtn.icoFilter {
    background-image: url(../img/godo2023/ico_filter.svg);
}

.reviewComent .searchFilter .icoBtn.icoFilter.on {
    border-color: #4130df;
    background-image: url(../img/godo2023/ico_filter_on.svg);
}

.reviewComent .searchFilter .icoBtn.icoSearch {
    background-image: url(../img/godo2023/ico_search.svg);
}

.reviewComent .searchFilter .icoBtn.icoSearch.on {
    border-color: #4130df;
    background-image: url(../img/godo2023/ico_close_blue.svg);
}

.reviewComent .searchFilter .icoBtn + .icoBtn {
    margin-left: 12px;
}

.reviewComent .list > li {
    padding: 20px 0;
    border-bottom: 1px solid #efefef;
}

.reviewComent .list .flexBox, .reviewComent .list .flexEndBox, .reviewComent .list .timeSelInfo, .reviewComent .list .quickBox, .reviewComent .list .storeSearch, .reviewComent .list .visitSelect,
.reviewComent .list .visitInfo, .reviewComent .list .storeTitBox, .reviewComent .list .instBox {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
}

.reviewComent .list .flexBox .name, .reviewComent .list .flexEndBox .name, .reviewComent .list .timeSelInfo .name, .reviewComent .list .quickBox .name, .reviewComent .list .storeSearch .name, .reviewComent .list .visitSelect .name, .reviewComent .list .visitInfo .name, .reviewComent .list .storeTitBox .name, .reviewComent .list .instBox .name {
    display: flex;
    column-gap: 8px;
    align-items: center;
    font-weight: 400;
}

.reviewComent .list .flexBox .name + .date, .reviewComent .list .flexEndBox .name + .date, .reviewComent .list .timeSelInfo .name + .date, .reviewComent .list .quickBox .name + .date, .reviewComent .list .storeSearch .name + .date, .reviewComent .list .visitSelect .name + .date, .reviewComent .list .visitInfo .name + .date, .reviewComent .list .storeTitBox .name + .date, .reviewComent .list .instBox .name + .date {
    position: relative;
    margin-left: 12px;
    padding-left: 12px;
}

.reviewComent .list .flexBox .name + .date:before, .reviewComent .list .flexEndBox .name + .date:before, .reviewComent .list .timeSelInfo .name + .date:before, .reviewComent .list .quickBox .name + .date:before, .reviewComent .list .storeSearch .name + .date:before, .reviewComent .list .visitSelect .name + .date:before, .reviewComent .list .visitInfo .name + .date:before, .reviewComent .list .storeTitBox .name + .date:before, .reviewComent .list .instBox .name + .date:before {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
    content: '';
    display: block;
    width: 1px;
    height: 11px;
    background: #bfbfbf;
}

.reviewComent .list .starRateWrap {
    padding: 2px 0;
    vertical-align: top;
}

.reviewComent .list .option {
    display: flex;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #000;
    margin-top: 8px;
}

.reviewComent .list .option .linkTxt {
    margin-left: 8px;
    color: #4130df;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    border-bottom: 1px solid #4130df;
}

.reviewComent .list .flexBox, .reviewComent .list .flexEndBox, .reviewComent .list .timeSelInfo, .reviewComent .list .quickBox, .reviewComent .list .storeSearch, .reviewComent .list .visitSelect,
.reviewComent .list .visitInfo, .reviewComent .list .storeTitBox, .reviewComent .list .instBox {
    align-items: flex-start;
}

.reviewComent .list .memoBox {
    margin-top: 20px;
}

.reviewComent .list .memoBox .memo {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #909090;
}

.reviewComent .list .memoBox .moreReviewBtn {
    position: relative;
    margin-top: 8px;
    padding-right: 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.reviewComent .list .memoBox .moreReviewBtn:after {
    content: '';
    position: absolute;
    top: calc(50% - 7px);
    right: 0;
    height: 7px;
    width: 7px;
    border: solid #000;
    border-width: 1px 0 0 1px;
    transform: rotate(224deg);
    transition: border-color 200ms ease-in-out 0s;
}

.reviewComent .list .memoBox.on .memo {
    -webkit-line-clamp: initial;
}

.reviewComent .list .memoBox.on .moreReviewBtn:after {
    top: calc(50% - 4px);
    transform: rotate(45deg);
}

.reviewComent .list .photoList {
    display: flex;
    margin-top: 20px;
    align-items: center;
    column-gap: 20px;
}

.reviewComent .list .photoList li {
    width: 220px;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
}

.reviewComent .list .photoList li button {
    width: 100%;
    height: 100%;
}

.reviewComent .list .photoList li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewComent .list .photoList li .video {
    position: relative;
    width: 100%;
    height: 100%;
}

.reviewComent .list .photoList li .video:after {
    content: '비디오';
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 80px;
    height: 80px;
    margin: -40px;
    background: url(../img/godo2023/ico_play.svg) no-repeat center;
    text-indent: -999px;
    overflow: hidden;
}

.reviewComent .list .photoList li .more {
    position: relative;
}

.reviewComent .list .photoList li .more:before {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    content: '더&nbsp보기 +';
    display: flex;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.reviewComent .list .photoList li .more:after {
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '더보기';
    width: auto;
    height: auto;
    text-indent: 0;
    padding-right: 20px;
    display: flex;
    font-size: 22px;
    margin: 0;
    color: #fff;
    font-weight: 700;
    line-height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    background: url(../img/godo2023/ico_more_white.svg) no-repeat center right/16px;
}

.reviewComent .list .answerBox {
    display: flex;
    margin-top: 20px;
    padding: 28px;
    border-radius: 8px;
    background: #f7f7f7;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    line-height: 26px;
}

.reviewComent .list .answerBox .tit {
    font-weight: 700;
}

.reviewComent .list .answerBox .answerMemo {
    color: #909090;
    font-weight: 400;
}

.reviewComent .lineCheck {
    display: flex;
    margin-top: 20px;
    justify-content: flex-end;
    align-items: center;
    column-gap: 12px;
}

.reviewComent .lineCheck .txt {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #444;
}

.paginationWrap {
    display: flex;
    margin-top: 24px;
    justify-content: center;
}

.paginationWrap .btnPage {
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    justify-content: center;
    align-items: center;
    text-indent: -999px;
    overflow: hidden;
    background: no-repeat center / 12px 12px;
}

.paginationWrap .btnPage.first {
    background-image: url(../img/godo2023/icon_page_last.svg);
    background-size: 16px;
    transform: rotate(180deg);
}

.paginationWrap .btnPage.prev {
    background-image: url(../img/godo2023/ico_page_one.svg);
    transform: rotate(180deg);
}

.paginationWrap .btnPage.next {
    background-image: url(../img/godo2023/ico_page_one.svg);
}

.paginationWrap .btnPage.last {
    background-size: 16px;
    background-image: url(../img/godo2023/icon_page_last.svg);
}

.paginationWrap .btnPage + .btnPage {
    margin-left: 4px;
}

.paginationWrap .btnPage:disabled.last {
    background-size: 16px;
    background-image: url(../img/godo2023/icon_page_first.svg);
    transform: rotate(180deg);
}

.paginationWrap .btnPage:disabled.next {
    background-size: 16px;
    background-image: url(../img/godo2023/icon_page_prev.svg);
    transform: rotate(180deg);
}

.paginationWrap .btnPage:disabled.prev {
    background-size: 16px;
    background-image: url(../img/godo2023/icon_page_prev.svg);
    transform: rotate(0);
}

.paginationWrap .btnPage:disabled.first {
    background-size: 16px;
    background-image: url(../img/godo2023/icon_page_first.svg);
    transform: rotate(0);
}

.paginationWrap ul {
    display: flex;
    margin: 0 30px;
}

.paginationWrap ul li span,
.paginationWrap ul li button {
    display: inline-flex;
    height: 30px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
}

.paginationWrap ul li span {
    color: #4130df;
    font-weight: 700;
}

.likeBtn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    padding: 9px 11px 9px 35px;
    border: 1px solid #bfbfbf;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    min-width: 70px;
    box-sizing: border-box;
    line-height: 18px;
    color: #bfbfbf;
    background: url(../img/godo2023/ico_like_off.svg) no-repeat 12px center/20px;
}

.likeBtn input {
    position: absolute;
    opacity: 0;
}

.likeBtn.checked {
    color: #4130df;
    background-image: url(../img/godo2023/ico_like_on.svg);
}

.likeBtn:has(input:focus-visible), .likeBtn:has(input:checked) {
    color: #4130df;
    background-image: url(../img/godo2023/ico_like_on.svg);
}

.expertSwiper {
    margin-top: 60px;
}

.expertSwiper .swiper {
    margin-top: 24px;
}

.expertSwiper .expertItem {
    display: flex;
    column-gap: 40px;
    text-align: left;
}

.expertSwiper .expertItem .imgBox {
    flex: 0 0 auto;
    width: 220px;
    height: 220px;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
}

.expertSwiper .expertItem .imgBox img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertSwiper .expertItem .reviewInfo {
    flex: 1 1 auto;
}

.expertSwiper .expertItem .reviewInfo .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.expertSwiper .expertItem .reviewInfo .userInfo {
    display: flex;
    margin-top: 8px;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
}

.expertSwiper .expertItem .reviewInfo .userInfo .name {
    display: flex;
    column-gap: 8px;
    align-items: center;
    font-weight: 400;
}

.expertSwiper .expertItem .reviewInfo .userInfo .name i {
    width: 20px;
    height: 20px;
}

.expertSwiper .expertItem .reviewInfo .userInfo .name i img {
    vertical-align: top;
}

.expertSwiper .expertItem .reviewInfo .userInfo .name + .date {
    position: relative;
    margin-left: 12px;
    padding-left: 12px;
    position: relative;
}

.expertSwiper .expertItem .reviewInfo .userInfo .name + .date:before {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
    content: '';
    display: block;
    width: 1px;
    height: 11px;
    background: #bfbfbf;
}

.expertSwiper .expertItem .reviewInfo .memo {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #909090;
}

.expertSwiper + .photoSwiper {
    padding-top: 60px;
    border-top: 1px solid #e1e1e1;
}

.photoSwiper {
    margin-top: 60px;
}

.photoSwiper .swiper {
    margin-top: 24px;
}

.photoSwiper .swiper .swiper-wrapper {
    position: relative;
    display: inline-flex;
    width: auto;
    max-width: 100%;
    column-gap: 0;
}

.photoItemList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
}

.photoItemList li {
    position: relative;
    flex: 0 0 auto;
}

.photoItemList li .photoItem.more:after {
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '더 보기';
    width: auto;
    height: auto;
    text-indent: 0;
    padding-right: 20px;
    display: flex;
    font-size: 22px;
    margin: 0;
    color: #fff;
    font-weight: 700;
    line-height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    background: url(../img/godo2023/ico_more_white.svg) no-repeat center right/16px;
}

.photoItemList li .photoItem.more:before {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: flex;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.photoItemList li .photoItem.more .num {
    display: none;
}

.photoItem {
    position: relative;
    width: 220px;
    height: 220px;
}

.photoItem .imgBox {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
}

.photoItem .imgBox img,
.photoItem .imgBox video {
    vertical-align: top;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photoItem .num {
    position: absolute;
    right: 15px;
    bottom: 12px;
    display: inline-flex;
    width: 29px;
    height: 29px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    opacity: 0.6;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 29px;
}

.photoItem .num:before {
    position: absolute;
    left: 3px;
    top: -3px;
    content: '';
    display: block;
    width: 29px;
    height: 29px;
    background: url(../img/godo2023/ico_subtract.svg) no-repeat center;
}

.photoItem.video:after {
    content: '비디오';
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 80px;
    height: 80px;
    margin: -40px;
    background: url(../img/godo2023/ico_play.svg) no-repeat center;
    text-indent: -999px;
    overflow: hidden;
}

.totalReview {
    display: flex;
    padding: 40px 0;
    border-radius: 8px;
    background: #f7f7f7;
}

.totalReview .box {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    padding: 0 40px;
    box-sizing: border-box;
}

.totalReview .box + .box {
    border-left: 1px solid #efefef;
}

.totalReview .item {
    margin-top: 20px;
}

.totalReview .title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
}

.totalReview .starTotal {
    display: block;
    margin-top: 45px;
    font-size: 48px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0em;
    text-align: center;
}

.totalReview .starRateWrap {
    display: flex;
    margin-top: 15px;
    justify-content: center;
}

.totalReview .scoreList li {
    display: flex;
    height: 24px;
    align-items: center;
    column-gap: 8px;
}

.totalReview .scoreList li + li {
    margin-top: 4px;
}

.totalReview .scoreList li.active .score {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #909090;
}

.totalReview .scoreList li.active .percentage {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: #4130df;
}

.totalReview .scoreList li.active .gauge {
    background: #4130df;
}

.totalReview .score {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #909090;
}

.totalReview .percentage {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #909090;
}

.totalReview .graph {
    position: relative;
    width: 245px;
    height: 6px;
    border-radius: 10px;
    background: #d9d6f9;
    overflow: hidden;
    flex: 0 0 auto;
}

.totalReview .graph .gauge {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    height: 6px;
    background: #aaa3ec;
    border-radius: 10px;
}

.totalReview .satisItem {
    position: relative;
    display: flex;
    height: 30px;
    align-items: center;
}

.totalReview .satisItem + .satisItem {
    margin-top: 8px;
}

.totalReview .name {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #909090;
}

.totalReview .num {
    margin-left: auto;
    flex: 0 0 40px;
    max-width: 40px;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: #4130df;
}

.totalReview .val {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 12px;
    border-radius: 200px;
    border: 1px solid #e1e1e1;
    background: #fff;
    font-size: 13px;
    line-height: 28px;
    font-weight: 500;
    text-align: center;
}

.totalReview .reviewSwiper {
    position: relative;
    padding: 0 40px;
}

.totalReview .reviewSwiper .swiperPagination {
    margin-top: 20px;
    height: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.totalReview .reviewSwiper .swiperPagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    border-radius: 4px;
    opacity: 1;
    background: #bfbfbf;
    transition: all 300ms ease-in-out 0s;
}

.totalReview .reviewSwiper .swiperPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 28px;
    background: #4130df;
}

.totalReview .reviewSwiper .swiperPagination .swiper-pagination-bullet.swiper-pagination-bullet-active.video {
    width: 16px;
    background-image: url("../img/godo2023/ico_prod_video_on.svg");
}

.totalReview .reviewSwiper .swiperNavigation {
    z-index: 2;
    left: 0;
    right: 0;
    width: auto;
    margin-top: -18px;
}

.totalReview .reviewSwiper .swiperNavigation .swiperButtonPrev.circle,
.totalReview .reviewSwiper .swiperNavigation .swiperButtonNext.circle {
    width: 20px;
    height: 20px;
    border: none;
    background: none;
    filter: none;
}

.totalReview .reviewSwiper .swiperNavigation .swiperButtonPrev.circle:before,
.totalReview .reviewSwiper .swiperNavigation .swiperButtonNext.circle:before {
    height: 10px;
    width: 10px;
}

.flexEndBox {
    align-items: flex-end;
}

.flexEndBox .arrLink, .flexEndBox .arrLinkGray {
    margin-left: auto;
}

.socialSecurityNumberFull .formItemColumn {
    column-gap: 0;
}

.socialSecurityNumberFull .hyphen {
    flex: 0 0 auto;
    height: 1px;
    width: 6px;
    margin: 0 12px;
    background: #909090;
}

.timeText {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 500;
    line-height: 23px;
    text-align: center;
    color: #ff4d4d;
}

.formRoundGroup {
    margin-top: 20px;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

[data-tab-cont='plans'] .searchSticky, [data-tab-cont='plans'] .comparisonSticky {
    top: 55px;
}

.btnTooltip {
    position: relative;
}

.btnTooltipItem {
    z-index: 9;
    position: absolute;
    bottom: calc(100% + 17px);
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 20px 12px 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    white-space: nowrap;
}

.btnTooltipItem .txt {
    position: relative;
    z-index: 11;
}

.btnTooltipItem:before {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: #000;
    opacity: 0.75;
    box-shadow: 0 2px 4px 0 #444;
}

.btnTooltipItem:after {
    position: absolute;
    top: 100%;
    left: 50%;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-bottom: 8px solid transparent;
    border-top: 8px solid #000;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    opacity: 0.75;
}

.devicePriceList {
    padding: 28px;
    border-radius: 8px;
    background: #f7f7f7;
}

.devicePriceList > li + li {
    border-top: 1px solid #e1e1e1;
    margin-top: 20px;
    padding-top: 20px;
}

.devicePriceList li {
    display: flex;
    column-gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 16px;
    line-height: 26px;
}

.devicePriceList li .tit {
    font-weight: 500;
    flex: 1 1 30%;
    text-align: left;
}

.devicePriceList li .price {
    text-align: right;
    flex: 1 1 60%;
    color: #4130df;
}

.devicePriceList li .price strong {
    font-weight: 700;
}

.devicePriceList li .txt {
    flex: 0 0 60%;
    text-align: right;
    color: #444;
}

.devicePriceList li .desc {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    color: #909090;
    text-align: right;
}

.devicePriceList li ul {
    width: 100%;
    margin-top: 8px;
}

.devicePriceList li ul li {
    font-weight: 400;
}

.devicePriceList li ul li + li {
    margin-top: 4px;
}

.devicePriceList li ul li .tit {
    color: #666;
}

.devicePriceList li ul li .price {
    color: #444;
}

.devicePriceList li ul li .price strong {
    font-weight: 400;
}

.deviceSwiperWrap {
    position: relative;
    margin-top: 60px;
}

.deviceSwiper {
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.deviceSwiper .swiper-slide {
    display: flex;
    padding: 28px;
    width: 100% !important;
    box-sizing: border-box;
    align-items: center;
    flex-direction: column;
}

.deviceSwiper .swiper-slide.open .more:before {
    background-image: url(../img/godo2023/ico_minus.svg);
    background-size: cover;
}

.deviceSwiper .title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.deviceSwiper .desc {
    margin-top: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.deviceSwiper .desc small {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    line-height: 26px;
}

.deviceSwiper .flexBox, .deviceSwiper .flexEndBox, .deviceSwiper .timeSelInfo, .deviceSwiper .quickBox, .deviceSwiper .storeSearch, .deviceSwiper .visitSelect,
.deviceSwiper .visitInfo, .deviceSwiper .storeTitBox, .deviceSwiper .instBox {
    margin-top: 24px;
    width: 100%;
    column-gap: 20px;
}

.deviceSwiper .flexBox .imgBox, .deviceSwiper .flexEndBox .imgBox, .deviceSwiper .timeSelInfo .imgBox, .deviceSwiper .quickBox .imgBox, .deviceSwiper .storeSearch .imgBox, .deviceSwiper .visitSelect .imgBox, .deviceSwiper .visitInfo .imgBox, .deviceSwiper .storeTitBox .imgBox, .deviceSwiper .instBox .imgBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
}

.deviceSwiper .flexBox .imgBox img, .deviceSwiper .flexEndBox .imgBox img, .deviceSwiper .timeSelInfo .imgBox img, .deviceSwiper .quickBox .imgBox img, .deviceSwiper .storeSearch .imgBox img, .deviceSwiper .visitSelect .imgBox img, .deviceSwiper .visitInfo .imgBox img, .deviceSwiper .storeTitBox .imgBox img, .deviceSwiper .instBox .imgBox img {
    width: 280px;
    vertical-align: top;
}

.deviceSwiper .flexBox .optionBox, .deviceSwiper .flexEndBox .optionBox, .deviceSwiper .timeSelInfo .optionBox, .deviceSwiper .quickBox .optionBox, .deviceSwiper .storeSearch .optionBox, .deviceSwiper .visitSelect .optionBox, .deviceSwiper .visitInfo .optionBox, .deviceSwiper .storeTitBox .optionBox, .deviceSwiper .instBox .optionBox {
    flex: 1 1 auto;
    padding-right: 30px;
}

.deviceSwiper .flexBox .optionBox .formItemRow .formItemColumn, .deviceSwiper .flexEndBox .optionBox .formItemRow .formItemColumn, .deviceSwiper .timeSelInfo .optionBox .formItemRow .formItemColumn, .deviceSwiper .quickBox .optionBox .formItemRow .formItemColumn, .deviceSwiper .storeSearch .optionBox .formItemRow .formItemColumn, .deviceSwiper .visitSelect .optionBox .formItemRow .formItemColumn, .deviceSwiper .visitInfo .optionBox .formItemRow .formItemColumn, .deviceSwiper .storeTitBox .optionBox .formItemRow .formItemColumn, .deviceSwiper .instBox .optionBox .formItemRow .formItemColumn {
    width: 250px;
}

.deviceSwiper .flexBox .optionBox .formItemRow + .formItemRow, .deviceSwiper .flexEndBox .optionBox .formItemRow + .formItemRow, .deviceSwiper .timeSelInfo .optionBox .formItemRow + .formItemRow, .deviceSwiper .quickBox .optionBox .formItemRow + .formItemRow, .deviceSwiper .storeSearch .optionBox .formItemRow + .formItemRow, .deviceSwiper .visitSelect .optionBox .formItemRow + .formItemRow, .deviceSwiper .visitInfo .optionBox .formItemRow + .formItemRow, .deviceSwiper .storeTitBox .optionBox .formItemRow + .formItemRow, .deviceSwiper .instBox .optionBox .formItemRow + .formItemRow {
    margin-top: 20px;
}

.deviceSwiper .flexBox .optionBox .formLabel, .deviceSwiper .flexEndBox .optionBox .formLabel, .deviceSwiper .timeSelInfo .optionBox .formLabel, .deviceSwiper .quickBox .optionBox .formLabel, .deviceSwiper .storeSearch .optionBox .formLabel, .deviceSwiper .visitSelect .optionBox .formLabel, .deviceSwiper .visitInfo .optionBox .formLabel, .deviceSwiper .storeTitBox .optionBox .formLabel, .deviceSwiper .instBox .optionBox .formLabel {
    font-size: 14px;
    line-height: 24px;
}

.deviceSwiper .flexBox .optionBox .selectItem, .deviceSwiper .flexEndBox .optionBox .selectItem, .deviceSwiper .timeSelInfo .optionBox .selectItem, .deviceSwiper .quickBox .optionBox .selectItem, .deviceSwiper .storeSearch .optionBox .selectItem, .deviceSwiper .visitSelect .optionBox .selectItem, .deviceSwiper .visitInfo .optionBox .selectItem, .deviceSwiper .storeTitBox .optionBox .selectItem, .deviceSwiper .instBox .optionBox .selectItem, .deviceSwiper .flexBox .optionBox .selectCheckItem, .deviceSwiper .flexEndBox .optionBox .selectCheckItem, .deviceSwiper .timeSelInfo .optionBox .selectCheckItem, .deviceSwiper .quickBox .optionBox .selectCheckItem, .deviceSwiper .storeSearch .optionBox .selectCheckItem, .deviceSwiper .visitSelect .optionBox .selectCheckItem, .deviceSwiper .visitInfo .optionBox .selectCheckItem, .deviceSwiper .storeTitBox .optionBox .selectCheckItem, .deviceSwiper .instBox .optionBox .selectCheckItem {
    width: 100%;
}

.deviceSwiper .flexBox .optionBox .selectItem .selectButton, .deviceSwiper .flexEndBox .optionBox .selectItem .selectButton, .deviceSwiper .timeSelInfo .optionBox .selectItem .selectButton, .deviceSwiper .quickBox .optionBox .selectItem .selectButton, .deviceSwiper .storeSearch .optionBox .selectItem .selectButton, .deviceSwiper .visitSelect .optionBox .selectItem .selectButton, .deviceSwiper .visitInfo .optionBox .selectItem .selectButton, .deviceSwiper .storeTitBox .optionBox .selectItem .selectButton, .deviceSwiper .instBox .optionBox .selectItem .selectButton, .deviceSwiper .flexBox .optionBox .selectCheckItem .selectButton, .deviceSwiper .flexEndBox .optionBox .selectCheckItem .selectButton, .deviceSwiper .timeSelInfo .optionBox .selectCheckItem .selectButton, .deviceSwiper .quickBox .optionBox .selectCheckItem .selectButton, .deviceSwiper .storeSearch .optionBox .selectCheckItem .selectButton, .deviceSwiper .visitSelect .optionBox .selectCheckItem .selectButton, .deviceSwiper .visitInfo .optionBox .selectCheckItem .selectButton, .deviceSwiper .storeTitBox .optionBox .selectCheckItem .selectButton, .deviceSwiper .instBox .optionBox .selectCheckItem .selectButton {
    padding-right: 22px;
}

.deviceSwiper .itemName {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
}

.deviceSwiper .deviceInfoBox {
    margin-top: 24px;
    width: 100%;
}

.deviceSwiper .formItemRow {
    margin-top: 0px;
}

.deviceSwiper .more {
    position: relative;
    margin-top: 24px;
    padding-right: 42px;
}

.deviceSwiper .more:before {
    background: url(../img/godo2023/ico_plus_black.svg) no-repeat center;
}

.deviceSwiper .more:focus, .deviceSwiper .more:active, .deviceSwiper .more:hover {
    border-color: #e1e1e1;
    color: #444;
    box-shadow: none;
}

.deviceSwiper .more:focus:before, .deviceSwiper .more:active:before, .deviceSwiper .more:hover:before {
    background: url(../img/godo2023/ico_plus_black.svg) no-repeat center;
}

.lineTab {
    display: flex;
}

.lineTab li {
    flex: 1 1 50%;
}

.lineTab li button {
    display: block;
    width: 100%;
    padding: 13px 16px 13px 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    border-bottom: 1px solid #e1e1e1;
}

.lineTab li button[data-active] {
    padding-bottom: 12px;
    border-bottom: 2px solid #4130df;
    color: #4130df;
    font-weight: 700;
}

.lineTab li button.on {
    padding-bottom: 12px;
    border-bottom: 2px solid #4130df;
    color: #4130df;
    font-weight: 700;
}

.lineTab li a {
    display: block;
    padding: 13px 16px 13px 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    border-bottom: 1px solid #e1e1e1;
}

.lineTab li a[data-active] {
    padding-bottom: 12px;
    border-bottom: 2px solid #4130df;
    color: #4130df;
    font-weight: 700;
}

.lineTab li a.on {
    padding-bottom: 12px;
    border-bottom: 2px solid #4130df;
    color: #4130df;
    font-weight: 700;
}

#windowModal .modal {
    display: block;
}

#windowModal .modalItem {
    position: relative;
    height: 100vh;
}

#windowModal .modalInner {
    display: flex;
    min-width: 700px;
    min-height: 500px;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    padding: 20px 0;
    box-sizing: border-box;
}

#windowModal .btnModalClose {
    display: none;
}

#windowModal .modalHeader {
    font-size: 26px;
    font-weight: 700;
    line-height: 40px;
    padding: 20px 40px;
    background: #fff;
}

#windowModal .modalHeader.time {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#windowModal .modalHeader.time .timeWrap {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

#windowModal .modalHeader.time .sessionTime {
    display: block;
}

#windowModal .modalHeader.time .sessionTime + .btnSt.secondary3, #windowModal .modalHeader.time body .wrap.godo2023 .cart-empty-wrap .btns-wrap .sessionTime + a.secondary3, body .wrap.godo2023 .cart-empty-wrap .btns-wrap #windowModal .modalHeader.time .sessionTime + a.secondary3, #windowModal .modalHeader.time body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap .sessionTime + a.btn-semi, #windowModal .modalHeader.time body .wrap.godo2023 .my-cart-tbl .sessionTime + .secondary3.cart-btn, body .wrap.godo2023 .my-cart-tbl #windowModal .modalHeader.time .sessionTime + .secondary3.cart-btn, #windowModal .modalHeader.time body .wrap.godo2023 .modal .my-cart-tbl .sessionTime + .cart-btn.btn-semi,
#windowModal .modalHeader.time body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .sessionTime + .secondary3.cart-btn, #windowModal .modalHeader.time body .wrap.godo2023 .modal .my-cart-tbl .all-btns-wrap .sessionTime + .cart-btn.btn-semi, #windowModal .modalHeader.time body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > .sessionTime + a.secondary3, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc #windowModal .modalHeader.time .group-total-btn > .sessionTime + a.secondary3, #windowModal .modalHeader.time body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > .sessionTime + a.btn-semi, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal #windowModal .modalHeader.time .group-total-btn > .sessionTime + a.btn-semi, #windowModal .modalHeader.time body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > .sessionTime + a.btn-semi, body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc #windowModal .modalHeader.time .group-total-btn > .sessionTime + a.btn-semi, #windowModal .modalHeader.time body .wrap.godo2023 .modal .sessionTime + .secondary3.btn-primary, body .wrap.godo2023 .modal #windowModal .modalHeader.time .sessionTime + .secondary3.btn-primary, #windowModal .modalHeader.time body .wrap.godo2023 .modal .sessionTime + .btn-semi, body .wrap.godo2023 .modal #windowModal .modalHeader.time .sessionTime + .btn-semi, #windowModal .modalHeader.time body .wrap.godo2023 .modal .sessionTime + .secondary3.btn-outline-primary, body .wrap.godo2023 .modal #windowModal .modalHeader.time .sessionTime + .secondary3.btn-outline-primary {
    display: block;
}

#windowModal .modalContent {
    flex: 1 1 auto;
    overflow: auto;
    overscroll-behavior: contain;
    padding: 20px 40px 40px;
}

#windowModal .modalContent .modalHeader {
    padding: 20px 0;
}

#windowModal .modalTable {
    font-size: 13px;
    line-height: 23px;
    margin: 20px 0 0;
}

#windowModal .modalTable th,
#windowModal .modalTable td {
    border: 1px solid #e1e1e1;
}

#windowModal .modalTable th {
    width: 120px;
    font-weight: 400;
    padding: 12px 8px;
    color: #666;
    background-color: #f7f7f7;
    border-left: none;
    text-align: center;
}

#windowModal .modalTable td {
    padding: 12px 12px;
    color: #909090;
    border-right: none;
}

#windowModal .modalFooter {
    padding: 20px 40px 0;
    flex: 0 0 auto;
    background: #fff;
}

#windowModal .modalFooter .btnWrap {
    margin-top: 0;
}

#windowModal .modalFooter .btnSt, #windowModal .modalFooter body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap #windowModal .modalFooter a, #windowModal .modalFooter body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl #windowModal .modalFooter .cart-btn, #windowModal .modalFooter body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc #windowModal .modalFooter .group-total-btn > a, #windowModal .modalFooter body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal #windowModal .modalFooter .btn-primary, #windowModal .modalFooter body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal #windowModal .modalFooter .btn-semi, #windowModal .modalFooter body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal #windowModal .modalFooter .btn-outline-primary {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    height: 54px;
    padding: 13px 20px;
    min-width: 200px;
}

.prodAlertText {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 4px;
    padding: 28px;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    border-radius: 8px;
    background: #f5f4fc;
}

.prodAlertText i {
    display: inline-block;
    height: 20px;
    width: 20px;
    vertical-align: -3px;
    background: url("../img/godo2023/ico_text_info_primary.svg") no-repeat 50% 50%;
}

.productInfoBox {
    display: flex;
    column-gap: 12px;
    justify-content: center;
    padding: 28px;
    border-radius: 8px;
    background: #f7f7f7;
}

.productInfoBox .img {
    width: 120px;
    height: 120px;
}

.productInfoBox .info {
    padding-top: 10px;
}

.productInfoBox .info .tit {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.productInfoBox .info ul {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.productInfoBox .info .gigaList {
    margin-top: 8px;
}

.productInfoBox .info .gigaList li {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
}

.productInfoBox .info .gigaList li + li {
    position: relative;
    padding-left: 13px;
}

.productInfoBox .info .gigaList li + li:before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: '';
    display: block;
    width: 1px;
    height: 11px;
    background: #bfbfbf;
}

.productInfoBox .info .colorLsit {
    margin-top: 8px;
    max-width: 592px;
    flex-wrap: wrap;
}

.productInfoBox .info .colorLsit li {
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.productInfoBox .info .colorCir {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    border: 1px solid #bfbfbf;
}

.filterBox {
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
    border-bottom: 1px solid #efefef;
}

.filterBox .flexSelect {
    margin-bottom: -1px;
}

.flexSelect {
    flex: 1 1 0;
    display: flex;
}

.flexSelect label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    color: #909090;
    padding-right: 8px;
    border-bottom: 1px solid #efefef;
}

.flexSelect .selectItem, .flexSelect .selectCheckItem {
    width: 100%;
    border-bottom: 1px solid #efefef;
}

.flexSelect .selectItem .selectButton, .flexSelect .selectCheckItem .selectButton {
    height: 40px;
}

.flexSelect .selectItem .selectOptions, .flexSelect .selectCheckItem .selectOptions {
    top: 42px;
}

.flexSelect .selectItem:has(.selectButton:focus), .flexSelect .selectCheckItem:has(.selectButton:focus) {
    border-width: 1px;
}

.chartContent {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    margin-top: 24px;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

.chartContent .noData {
    margin-top: 0;
}

.chartBox {
    display: flex;
    column-gap: 28px;
}

.chartBox .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.chartBox .textInfo, .chartBox .textInfoBlue, .chartBox .textInfoRed, .chartBox .textInfoBlack, .chartBox .textInfoGray, .chartBox .textInfoBlNline {
    margin-top: 4px;
}

.chartBox .box {
    flex: 1 1 50%;
}

.chartBox .noData {
    margin-top: 20px;
}

.chartBox .barPurpleLight {
    margin-top: 20px;
}

.chartBox .barPurpleLight li {
    position: relative;
}

.chartBox .barPurpleLight li:before {
    content: '';
    display: block;
    width: 100%;
    height: 32px;
    border-radius: 4px;
    background: #f7f7f7;
}

.chartBox .barPurpleLight li + li {
    margin-top: 20px;
}

.chartBox .barPurpleLight li .barChartTextArea {
    margin-top: 8px;
    display: flex;
    column-gap: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #909090;
}

.chartBox .barPurpleLight li .barChartTextArea strong {
    font-weight: 500;
    color: #000;
}

.chartBox .barPurpleLight li .barChartFill {
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    border-radius: 4px;
    background: #d9d6f9;
}

.chartBox .barPurpleLight li .barChartOr {
    position: absolute;
    top: 0;
    left: 12px;
    line-height: 32px;
    font-size: 13px;
    font-weight: 700;
    color: #4130df;
}

.chartBox .barPurpleLight li .barChartPer {
    position: absolute;
    top: 0;
    right: 12px;
    line-height: 32px;
    font-size: 13px;
    font-weight: 700;
    color: #4130df;
}

.donutChartArea {
    position: relative;
}

.donutChartArea .donutChartWrao {
    overflow-x: hidden;
    position: relative;
    margin-top: 20px;
}

.donutChartArea .donutChart {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    transform: rotate(-90deg);
}

.donutChartArea .donutItems {
    width: 320px;
    margin: 0 auto;
}

.donutChartArea .donutItems ul {
    margin-top: 20px;
}

.donutChartArea .donutItems ul li {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.donutChartArea .donutItems ul li .donutBg {
    width: 12px;
    height: 12px;
    vertical-align: middle;
    border-radius: 100%;
}

.donutChartArea .donutItems ul li .donutText {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: #909090;
}

.donutChartArea .donutItems ul li .donutPer {
    margin-left: auto;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    color: #444;
}

.donutChartArea .donutItems ul li .donutPer.on {
    font-weight: 700;
    color: #4130df;
}

.donutChartArea .donutItems ul li + li {
    margin-top: 4px;
}

.productList {
    display: flex;
    margin-top: 24px;
    column-gap: 12px;
}

.productList li {
    flex: 0 0 196px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    overflow: hidden;
}

.productList li .img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 196px;
    height: 160px;
    background: #f7f7f7;
}

.productList li .img img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.productList li .desc {
    padding: 20px;
}

.productList li .desc > p {
    display: -webkit-box;
    min-height: 56px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #444;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tagRow {
    display: flex;
    column-gap: 4px;
}

.tag {
    display: inline-block;
    padding: 3px 8px;
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: #fff;
    background: #4130df;
}

.tag.teal {
    background: #15b4b4;
}

.tag.sky {
    background: #2e96e6;
}

.tag.red {
    background: #ff6666;
}

.tag.purple {
    background: #7a6ee9;
}

.tag.green {
    background: #5bb881;
}

.tag.bluegray {
    background: #75737f;
}

.tag.white {
    padding-left: 10px;
    padding-right: 10px;
    color: #000;
    background: #fff;
    border: 1px solid #000;
}

.planSummary {
    display: flex;
    margin-top: 24px;
    justify-content: space-between;
    align-items: center;
}

.planList {
    margin-top: 40px;
}

.planItemBox {
    position: relative;
    display: block;
    margin-top: 20px;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

.planItemBox .tagRow + .titleBox {
    margin-top: 8px;
}

.planItemBox .titleBox {
    display: flex;
    align-items: end;
    column-gap: 12px;
}

.planItemBox .titleBox .title {
    display: flex;
    flex-direction: column;
    margin-right: auto;
}

.planItemBox .titleBox .title small {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #444;
}

.planItemBox .titleBox .title strong {
    display: inline-block;
    margin-top: 4px;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.planItemBox .titleBox .price {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.planItemBox .titleBox .price small {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #909090;
    text-decoration: line-through;
}

.planItemBox .titleBox .price strong {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #ff4d4d;
}

.planItemBox .titleBox .price strong em {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.planItemBox .bottomItem {
    padding-top: 12px;
}

.planItemBox .bottomItem .bulletList, .planItemBox .bottomItem .notiCon ul, .notiCon .planItemBox .bottomItem ul, .planItemBox .bottomItem .acc-menu-cnt .txList03, .acc-menu-cnt .planItemBox .bottomItem .txList03,
.planItemBox .bottomItem .acc-menu-cnt .txList05, .acc-menu-cnt .planItemBox .bottomItem .txList05 {
    margin-top: 0;
}

.planItemBox .bottomItem .bulletList + .list, .planItemBox .bottomItem .notiCon ul + .list, .notiCon .planItemBox .bottomItem ul + .list, .planItemBox .bottomItem .acc-menu-cnt .txList03 + .list, .acc-menu-cnt .planItemBox .bottomItem .txList03 + .list, .planItemBox .bottomItem .acc-menu-cnt .txList05 + .list, .acc-menu-cnt .planItemBox .bottomItem .txList05 + .list {
    margin-top: 20px;
}

.planItemBox .bottomItem .desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    color: #909090;
}

.planItemBox .bottomItem .desc + .list {
    margin-top: 20px;
}

.planItemBox .bottomItem .list {
    display: flex;
    flex-wrap: wrap;
    padding: 28px;
    border-radius: 6px;
    background: #f7f7f7;
    row-gap: 12px;
    column-gap: 40px;
    box-sizing: border-box;
}

.planItemBox .bottomItem .list li {
    position: relative;
    padding-left: 40px;
    flex: 1 1 calc((100% - 40px) / 2);
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
}

.planItemBox .bottomItem .list li i {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 32px;
    height: 32px;
}

.planItemBox .bottomItem .list li i img {
    vertical-align: top;
    width: 100%;
}

.planItemBox .bottomItem .list li.call i {
    background: url("../img/godo2023/ico_call.svg");
}

.planItemBox .bottomItem .list li.message i {
    background: url("../img/godo2023/ico_message.svg");
}

.planItemBox .bottomItem .list li.share i {
    background: url("../img/godo2023/ico_data.svg");
}

.planItemBox .bottomItem .list li.membership i {
    background: url("../img/godo2023/ico_vip.svg");
}

.planItemBox .bottomItem .list li strong {
    font-weight: 500;
    color: #000;
}

.planItemBox .bottomItem .list li span {
    display: block;
}

.planItemBox .bottomItem .promoBn {
    margin-top: 20px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
}

.planItemBox .btnOpen {
    position: relative;
    z-index: 2;
    text-indent: -999px;
    overflow: hidden;
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    background: url(../img/godo2023/plan_arrow.svg) no-repeat center/100%;
}

.planItemBox .addTitle {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.planItemBox .addTitle span {
    font-size: 16px;
    line-height: 26px;
}

.planItemBox .benefitList {
    margin-top: 12px;
    padding: 12px 20px;
    border-radius: 8px;
    background: #f7f7f7;
}

.planItemBox .benefitItem + .benefitItem {
    margin-top: 20px;
}

.planItemBox .benefitItem .tit {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
}

.planItemBox .benefitItem .itemList li {
    display: flex;
    margin-top: 12px;
    column-gap: 12px;
    font-size: 14px;
    line-height: 24px;
}

.planItemBox .benefitItem .itemList li i {
    flex: 0 0 24px;
    height: 24px;
}

.planItemBox .benefitItem .itemList li i img {
    vertical-align: top;
    width: 100%;
}

.planItemBox .benefitItem .itemList li .txt {
    font-weight: 500;
}

.planItemBox .benefitItem .itemList li .price {
    margin-left: auto;
    font-weight: 400;
    text-align: right;
    color: #ff4d4d;
}

.planItemBox input[type='checkbox'] {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.planItemBox.checked {
    padding: 27px;
    border: 2px solid #4130df;
    box-shadow: 0px 2px 4px 0px rgba(65, 48, 223, 0.18);
}

.planItemBox:has(input:checked) {
    padding: 27px;
    border: 2px solid #4130df;
}

.planItemBox.open .btnOpen {
    transform: rotate(180deg);
}

.additionList {
    margin-top: 20px;
}

.additionItem {
    position: relative;
    display: flex;
    height: 198px !important;
    padding: 28px 1px 1px;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid #e1e1e1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    /* 티다 문구점 */
    /* 티다 11번가 */
    /* 티다 원스 */
    /* 티다 UT  */
    /* OMC-티다 11번가 */
    /* OMC-티다 원스 */
    /* OMC-티다 UT  */
    /* SMZOP010-14247 */
}

.additionItem.NC00000206 {
    background: url(../img/godo2023/img_tda_mungu.png) no-repeat center 28px;
}

.additionItem.NC00000206 img {
    display: none;
}

.additionItem.NC00000206 .title {
    margin: 52px 0 0 0;
}

.additionItem.NC00000207 {
    background: url(../img/godo2023/img_tda_mungu.png) no-repeat center 28px;
}

.additionItem.NC00000207 img {
    display: none;
}

.additionItem.NC00000207 .title {
    margin: 52px 0 0 0;
}

.additionItem.NC00000135 {
    background: url(../img/godo2023/img_tda_11st.png) no-repeat center 28px;
}

.additionItem.NC00000135 img {
    display: none;
}

.additionItem.NC00000135 .title {
    margin: 52px 0 0 0;
}

.additionItem.NC00000136 {
    background: url(../img/godo2023/img_tda_ones.png) no-repeat center 28px;
}

.additionItem.NC00000136 img {
    display: none;
}

.additionItem.NC00000136 .title {
    margin: 52px 0 0 0;
}

.additionItem.NC00000170 {
    background: url(../img/godo2023/img_tda_ut.png) no-repeat center 28px;
}

.additionItem.NC00000170 img {
    display: none;
}

.additionItem.NC00000170 .title {
    margin: 52px 0 0 0;
}

.additionItem.NC00000172 {
    background: url(../img/godo2023/img_tda_11st.png) no-repeat center 28px;
}

.additionItem.NC00000172 img {
    display: none;
}

.additionItem.NC00000172 .title {
    margin: 52px 0 0 0;
}

.additionItem.NC00000173 {
    background: url(../img/godo2023/img_tda_ones.png) no-repeat center 28px;
}

.additionItem.NC00000173 img {
    display: none;
}

.additionItem.NC00000173 .title {
    margin: 52px 0 0 0;
}

.additionItem.NC00000174 {
    background: url(../img/godo2023/img_tda_ut.png) no-repeat center 28px;
}

.additionItem.NC00000174 img {
    display: none;
}

.additionItem.NC00000174 .title {
    margin: 52px 0 0 0;
}

.additionItem.NA00009484 {
    background: url(../img/godo2023/img_tda_tving.png) no-repeat center 28px;
}

.additionItem.NA00009484 img {
    display: none;
}

.additionItem.NA00009484 .title {
    margin: 52px 0 0 0;
}

.additionItem.NA00009485 {
    background: url(../img/godo2023/img_tda_tving.png) no-repeat center 28px;
}

.additionItem.NA00009485 img {
    display: none;
}

.additionItem.NA00009485 .title {
    margin: 52px 0 0 0;
}

.additionItem img {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.additionItem .title {
    display: flex;
    height: 56px;
    flex-direction: column;
    justify-content: center;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.additionItem .title .ellipsis {
    display: -webkit-box;
    padding: 0 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.additionItem .title span {
    white-space: nowrap;
}

.additionItem .desc {
    margin-top: 8px;
    height: 28px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #909090;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin: 0.8rem 2rem 0rem;
}

.additionItem .price {
    display: flex;
    height: 50px;
    margin-top: 12px;
    column-gap: 20px;
    background: #f7f7f7;
    justify-content: center;
    align-items: center;
}

.additionItem .price .sale {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #909090;
    text-decoration: line-through;
}

.additionItem .price .one {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #ff4d4d;
}

.additionItem .price .one em {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.additionItem .more {
    z-index: 2;
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/godo2023/ico_union.svg) no-repeat center/100%;
    text-indent: -999px;
    overflow: hidden;
}

.additionItem input {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.additionItem.checked {
    padding: 27px 0 0;
    border: 2px solid #4130df;
    box-shadow: 0px 2px 4px 0px rgba(65, 48, 223, 0.18);
}

.additionItem.checked .more {
    top: 11px;
    right: 11px;
}

.additionItem:has(input:checked) {
    padding: 27px 0 0;
    border: 2px solid #4130df;
}

.additionItem:has(input:checked) .more {
    top: 11px;
    right: 11px;
}

.additionItem.gift {
    align-items: start;
    padding: 20px;
}

.additionItem.gift .tagRow {
    position: absolute;
    top: 10px;
    left: 10px;
}

.additionItem.gift .imgBox {
    margin: -20px -20px 0;
    width: calc(100% + 40px);
}

.additionItem.gift .imgBox img {
    width: 100%;
    vertical-align: top;
}

.additionItem.gift .imgBox + .title {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #444;
    text-align: left;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.additionItem.gift :has(input:checked) {
    padding: 19px;
}

.tGiftWrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
    gap: 12px;
}

.tGiftWrap + .btnWrap .btnSt, .tGiftWrap + .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .tGiftWrap + .btnWrap a, .tGiftWrap + .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .tGiftWrap + .btnWrap .cart-btn, body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .tGiftWrap + .btnWrap .cart-btn, .tGiftWrap + .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .tGiftWrap + .btnWrap .group-total-btn > a, .tGiftWrap + .btnWrap body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .tGiftWrap + .btnWrap .btn-primary, .tGiftWrap + .btnWrap body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .tGiftWrap + .btnWrap .btn-semi, .tGiftWrap + .btnWrap body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .tGiftWrap + .btnWrap .btn-outline-primary {
    flex: 0 1 auto;
    position: relative;
    padding-right: 46px;
}

.giftItem {
    position: relative;
    display: flex;
    max-width: calc(50% - 6px);
    height: 140px;
    flex: 1 1 50%;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #e1e1e1;
}

.giftItem .tagRow {
    z-index: 2;
    position: absolute;
    top: 10px;
    left: 10px;
}

.giftItem .imgBox {
    position: absolute;
    top: -1px;
    left: -1px;
    flex: 0 0 140px;
    padding: 1px;
    width: 140px;
    height: 140px;
}

.giftItem .imgBox img {
    width: 100%;
    height: 100%;
    vertical-align: top;
    background-color: #f5f5f7;
}

.giftItem .info {
    display: flex;
    flex-direction: column;
    margin-left: 140px;
    height: 100%;
    box-sizing: border-box;
    padding: 28px;
}

.giftItem .info .title {
    display: block;
    display: -webkit-box;
    overflow: hidden;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #444;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: normal;
}

.giftItem .info .option {
    margin-top: auto;
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    color: #909090;
}

.giftItem .info .desc {
    margin-top: auto;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #909090;
}

.giftItem input {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.giftItem .more {
    z-index: 9;
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/godo2023/ico_union.svg) no-repeat center/100%;
    text-indent: -999px;
    overflow: hidden;
    cursor: pointer;
}

.giftItem.checked {
    border: 2px solid #4130df;
    box-shadow: 0px 2px 4px 0px rgba(51, 34, 197, 0.18);
}

.giftItem.checked .tagRow {
    top: 9px;
    left: 9px;
}

.giftItem.checked .imgBox {
    padding: 0;
}

.giftItem.checked .info {
    padding: 27px;
}

.giftItem.checked .more {
    top: 9px;
    right: 9px;
}

.giftItem:has(input:focus-visible), .giftItem:has(input:checked) {
    border: 2px solid #4130df;
}

.giftItem:has(input:focus-visible) .tagRow, .giftItem:has(input:checked) .tagRow {
    top: 9px;
    left: 9px;
}

.giftItem:has(input:focus-visible) .imgBox, .giftItem:has(input:checked) .imgBox {
    padding: 0;
}

.giftItem:has(input:focus-visible) .info, .giftItem:has(input:checked) .info {
    padding: 27px;
}

.giftItem:has(input:focus-visible) .info .option, .giftItem:has(input:checked) .info .option {
    font-weight: 700;
    color: #4130df;
}

.giftItem:has(input:focus-visible) .more, .giftItem:has(input:checked) .more {
    top: 9px;
    right: 9px;
}

.agreeText {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.numberList {
    counter-reset: numberListB;
}

.numberList > li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 24px;
    color: #909090;
}

.numberList > li:before {
    position: absolute;
    top: 0;
    left: 0;
    counter-increment: numberListB;
    content: counter(numberListB) ".";
}

.numberList > li.md {
    font-size: 16px;
    line-height: 26px;
}

.numberList li + li {
    margin-top: 4px;
}

.hyphenList > li {
    position: relative;
    padding-left: 9px;
    font-size: 14px;
    line-height: 24px;
    color: #909090;
}

.hyphenList > li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '-';
}

.hyphenList li + li {
    margin-top: 4px;
}

.bulletList, .notiCon ul, .acc-menu-cnt .txList03,
.acc-menu-cnt .txList05 {
    margin-top: 20px;
}

.bulletList .bulletItem + .bulletItem, .notiCon ul .bulletItem + .bulletItem, .acc-menu-cnt .txList03 .bulletItem + .bulletItem, .acc-menu-cnt .txList05 .bulletItem + .bulletItem, .bulletList .modalTable .tableBulletItem + .bulletItem, .modalTable .bulletList .tableBulletItem + .bulletItem, .notiCon ul .modalTable .tableBulletItem + .bulletItem, .modalTable .notiCon ul .tableBulletItem + .bulletItem, .acc-menu-cnt .txList03 .modalTable .tableBulletItem + .bulletItem, .modalTable .acc-menu-cnt .txList03 .tableBulletItem + .bulletItem, .acc-menu-cnt .txList05 .modalTable .tableBulletItem + .bulletItem, .modalTable .acc-menu-cnt .txList05 .tableBulletItem + .bulletItem, .bulletList .notiCon ul li + .bulletItem, .notiCon ul .bulletList li + .bulletItem, .notiCon ul li + .bulletItem, .acc-menu-cnt .txList03 .bulletList li + .bulletItem, .acc-menu-cnt .txList03 .notiCon ul li + .bulletItem, .acc-menu-cnt .txList03 li + .bulletItem, .acc-menu-cnt .txList05 .bulletList li + .bulletItem, .acc-menu-cnt .txList05 .notiCon ul li + .bulletItem, .acc-menu-cnt .txList05 li + .bulletItem, .bulletList .modalTable .bulletItem + .tableBulletItem, .modalTable .bulletList .bulletItem + .tableBulletItem, .notiCon ul .modalTable .bulletItem + .tableBulletItem, .modalTable .notiCon ul .bulletItem + .tableBulletItem, .acc-menu-cnt .txList03 .modalTable .bulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .txList03 .bulletItem + .tableBulletItem, .acc-menu-cnt .txList05 .modalTable .bulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .txList05 .bulletItem + .tableBulletItem, .bulletList .modalTable .tableBulletItem + .tableBulletItem, .modalTable .bulletList .tableBulletItem + .tableBulletItem, .notiCon ul .modalTable .tableBulletItem + .tableBulletItem, .modalTable .notiCon ul .tableBulletItem + .tableBulletItem, .acc-menu-cnt .txList03 .modalTable .tableBulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .txList03 .tableBulletItem + .tableBulletItem, .acc-menu-cnt .txList05 .modalTable .tableBulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .txList05 .tableBulletItem + .tableBulletItem, .modalTable .notiCon ul .bulletList li + .tableBulletItem, .notiCon ul .modalTable li + .tableBulletItem, .modalTable .notiCon ul li + .tableBulletItem, .modalTable .acc-menu-cnt .txList03 .bulletList li + .tableBulletItem, .acc-menu-cnt .txList03 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList03 li + .tableBulletItem, .modalTable .acc-menu-cnt .txList05 .bulletList li + .tableBulletItem, .acc-menu-cnt .txList05 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList05 li + .tableBulletItem, .bulletList .notiCon ul .bulletItem + li, .notiCon ul .bulletList .bulletItem + li, .notiCon ul .bulletItem + li, .notiCon ul .modalTable .bulletList .tableBulletItem + li, .notiCon ul .modalTable .tableBulletItem + li, .modalTable .notiCon ul .tableBulletItem + li, .bulletList .notiCon ul li + li, .notiCon ul .bulletList li + li, .notiCon ul li + li, .acc-menu-cnt .txList03 .bulletList .bulletItem + li, .acc-menu-cnt .txList03 .notiCon ul .bulletItem + li, .acc-menu-cnt .txList03 .bulletItem + li, .acc-menu-cnt .txList03 .modalTable .bulletList .tableBulletItem + li, .acc-menu-cnt .txList03 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList05 .modalTable .txList03 .tableBulletItem + li, .bulletList .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .bulletList li + li, .acc-menu-cnt .txList03 .notiCon ul li + li, .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList05 .bulletList .bulletItem + li, .acc-menu-cnt .txList05 .notiCon ul .bulletItem + li,
.acc-menu-cnt .txList05 .bulletItem + li, .acc-menu-cnt .txList05 .modalTable .bulletList .tableBulletItem + li,
.acc-menu-cnt .txList03 .modalTable .txList05 .tableBulletItem + li,
.acc-menu-cnt .txList05 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .txList05 .tableBulletItem + li,
.bulletList .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .bulletList li + li, .acc-menu-cnt .txList05 .notiCon ul li + li,
.acc-menu-cnt .txList05 li + li {
    margin-top: 4px;
}

.bulletList .bulletItem + .bulletItem.lg, .notiCon ul .bulletItem + .bulletItem.lg, .acc-menu-cnt .txList03 .bulletItem + .bulletItem.lg, .acc-menu-cnt .txList05 .bulletItem + .bulletItem.lg, .bulletList .modalTable .tableBulletItem + .bulletItem.lg, .modalTable .bulletList .tableBulletItem + .bulletItem.lg, .notiCon ul .modalTable .tableBulletItem + .bulletItem.lg, .modalTable .notiCon ul .tableBulletItem + .bulletItem.lg, .acc-menu-cnt .txList03 .modalTable .tableBulletItem + .bulletItem.lg, .modalTable .acc-menu-cnt .txList03 .tableBulletItem + .bulletItem.lg, .acc-menu-cnt .txList05 .modalTable .tableBulletItem + .bulletItem.lg, .modalTable .acc-menu-cnt .txList05 .tableBulletItem + .bulletItem.lg, .bulletList .notiCon ul li + .bulletItem.lg, .notiCon ul .bulletList li + .bulletItem.lg, .notiCon ul li + .bulletItem.lg, .acc-menu-cnt .txList03 .bulletList li + .bulletItem.lg, .acc-menu-cnt .txList03 .notiCon ul li + .bulletItem.lg, .acc-menu-cnt .txList03 li + .bulletItem.lg, .acc-menu-cnt .txList05 .bulletList li + .bulletItem.lg, .acc-menu-cnt .txList05 .notiCon ul li + .bulletItem.lg, .acc-menu-cnt .txList05 li + .bulletItem.lg, .bulletList .modalTable .bulletItem + .lg.tableBulletItem, .modalTable .bulletList .bulletItem + .lg.tableBulletItem, .notiCon ul .modalTable .bulletItem + .lg.tableBulletItem, .modalTable .notiCon ul .bulletItem + .lg.tableBulletItem, .acc-menu-cnt .txList03 .modalTable .bulletItem + .lg.tableBulletItem, .modalTable .acc-menu-cnt .txList03 .bulletItem + .lg.tableBulletItem, .acc-menu-cnt .txList05 .modalTable .bulletItem + .lg.tableBulletItem, .modalTable .acc-menu-cnt .txList05 .bulletItem + .lg.tableBulletItem, .bulletList .modalTable .tableBulletItem + .lg.tableBulletItem, .modalTable .bulletList .tableBulletItem + .lg.tableBulletItem, .notiCon ul .modalTable .tableBulletItem + .lg.tableBulletItem, .modalTable .notiCon ul .tableBulletItem + .lg.tableBulletItem, .acc-menu-cnt .txList03 .modalTable .tableBulletItem + .lg.tableBulletItem, .modalTable .acc-menu-cnt .txList03 .tableBulletItem + .lg.tableBulletItem, .acc-menu-cnt .txList05 .modalTable .tableBulletItem + .lg.tableBulletItem, .modalTable .acc-menu-cnt .txList05 .tableBulletItem + .lg.tableBulletItem, .modalTable .notiCon ul .bulletList li + .lg.tableBulletItem, .notiCon ul .modalTable li + .lg.tableBulletItem, .modalTable .notiCon ul li + .lg.tableBulletItem, .modalTable .acc-menu-cnt .txList03 .bulletList li + .lg.tableBulletItem, .acc-menu-cnt .txList03 .modalTable li + .lg.tableBulletItem, .modalTable .acc-menu-cnt .txList03 li + .lg.tableBulletItem, .modalTable .acc-menu-cnt .txList05 .bulletList li + .lg.tableBulletItem, .acc-menu-cnt .txList05 .modalTable li + .lg.tableBulletItem, .modalTable .acc-menu-cnt .txList05 li + .lg.tableBulletItem, .bulletList .notiCon ul .bulletItem + li.lg, .notiCon ul .bulletList .bulletItem + li.lg, .notiCon ul .bulletItem + li.lg, .notiCon ul .modalTable .bulletList .tableBulletItem + li.lg, .notiCon ul .modalTable .tableBulletItem + li.lg, .modalTable .notiCon ul .tableBulletItem + li.lg, .bulletList .notiCon ul li + li.lg, .notiCon ul .bulletList li + li.lg, .notiCon ul li + li.lg, .acc-menu-cnt .txList03 .bulletList .bulletItem + li.lg, .acc-menu-cnt .txList03 .notiCon ul .bulletItem + li.lg, .acc-menu-cnt .txList03 .bulletItem + li.lg, .acc-menu-cnt .txList03 .modalTable .bulletList .tableBulletItem + li.lg, .acc-menu-cnt .txList03 .modalTable .tableBulletItem + li.lg, .modalTable .acc-menu-cnt .txList03 .tableBulletItem + li.lg, .acc-menu-cnt .txList05 .modalTable .txList03 .tableBulletItem + li.lg, .bulletList .acc-menu-cnt .txList03 li + li.lg, .acc-menu-cnt .txList03 .bulletList li + li.lg, .acc-menu-cnt .txList03 li + li.lg, .acc-menu-cnt .txList05 .bulletList .bulletItem + li.lg, .acc-menu-cnt .txList05 .notiCon ul .bulletItem + li.lg,
.acc-menu-cnt .txList05 .bulletItem + li.lg, .acc-menu-cnt .txList05 .modalTable .bulletList .tableBulletItem + li.lg,
.acc-menu-cnt .txList03 .modalTable .txList05 .tableBulletItem + li.lg,
.acc-menu-cnt .txList05 .modalTable .tableBulletItem + li.lg, .modalTable .acc-menu-cnt .txList05 .tableBulletItem + li.lg,
.bulletList .acc-menu-cnt .txList05 li + li.lg, .acc-menu-cnt .txList05 .bulletList li + li.lg,
.acc-menu-cnt .txList05 li + li.lg {
    margin-top: 8px;
}

.bulletItem, .modalTable .tableBulletItem, .notiCon ul li, .acc-menu-cnt .txList03 li,
.acc-menu-cnt .txList05 li {
    position: relative;
    padding-left: 11px;
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    color: #909090;
}

.bulletItem:before, .modalTable .tableBulletItem:before, .notiCon ul li:before, .acc-menu-cnt .txList03 li:before,
.acc-menu-cnt .txList05 li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #bfbfbf;
}

.bulletItem.md, .modalTable .md.tableBulletItem, .notiCon ul li.md, .acc-menu-cnt .txList03 li.md,
.acc-menu-cnt .txList05 li.md {
    font-size: 14px;
    line-height: 24px;
}

.bulletItem.lg, .modalTable .lg.tableBulletItem, .notiCon ul li.lg, .acc-menu-cnt .txList03 li.lg,
.acc-menu-cnt .txList05 li.lg {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.bulletItem.lg .txt2, .modalTable .lg.tableBulletItem .txt2, .notiCon ul li.lg .txt2, .acc-menu-cnt .txList03 li.lg .txt2, .acc-menu-cnt .txList05 li.lg .txt2 {
    display: block;
    margin-top: 4px;
    font-size: 16px;
    line-height: 26px;
    color: #909090;
}

.bulletItem.lg .txt2:first-child, .modalTable .lg.tableBulletItem .txt2:first-child, .notiCon ul li.lg .txt2:first-child, .acc-menu-cnt .txList03 li.lg .txt2:first-child, .acc-menu-cnt .txList05 li.lg .txt2:first-child {
    margin-top: 8px;
}

.securityItem {
    display: flex !important;
    margin-top: 40px;
}

.securityItem .imgBox {
    flex: 0 0 268px;
}

.securityItem .imgBox img {
    width: 100%;
    vertical-align: top;
}

.securityItem .btnGroup {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    margin-left: 12px;
}

.securityItem .btnIcon {
    display: flex;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
    align-items: center;
    justify-content: center;
}

.securityItem .formItemRow {
    flex: 1 1 auto;
    margin: 0 0 0 24px !important;
}

.securityTitle .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.securityTitle .desc {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #909090;
}

.orderContBox {
    padding: 28px;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
}

.orderContBox .titleBox {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.orderContBox .titleBox .tit {
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
}

.orderContBox .titleBox .tit span {
    font-weight: 700;
}

.orderContBox .infoList {
    margin-top: 24px;
}

.orderContBox .infoList li {
    display: flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #909090;
    column-gap: 4px;
}

.orderContBox .infoList li i {
    display: inline-flex;
    width: 20px;
    height: 20px;
    margin-top: 3px;
    align-items: center;
}

.orderContBox .infoList li span {
    font-weight: 700;
}

.orderContBox .infoList li .cancel {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/godo2023/ico_delete.svg) no-repeat center/100%;
    text-indent: -9999px;
    overflow: hidden;
    margin-left: auto;
}

.orderContBox .infoList li + li {
    margin-top: 8px;
}

.orderContBox .btnGroup {
    display: flex;
    margin-top: 32px;
    justify-content: center;
}

.orderContBox ~ .orderContBox {
    margin-bottom: 40px;
}

.orderContBox:first-child:is(div.ordBoxDpNone) + ul.bulletList + .orderContBox:not(div.ordBoxDpNone), .notiCon .orderContBox:first-child:is(div.ordBoxDpNone) + ul + .orderContBox:not(div.ordBoxDpNone), .acc-menu-cnt .orderContBox:first-child:is(div.ordBoxDpNone) + ul.txList03 + .orderContBox:not(div.ordBoxDpNone), .acc-menu-cnt .orderContBox:first-child:is(div.ordBoxDpNone) + ul.txList05 + .orderContBox:not(div.ordBoxDpNone) {
    margin-top: 0px;
}

.ordBoxDpNone + .orderNotice {
    margin-top: 0px;
}

.orderConfiList {
    margin: -20px 0;
}

.orderConfiList > li {
    position: relative;
    padding: 20px 0 20px 36px;
    border-top: 1px solid #efefef;
}

.orderConfiList > li.none {
    border: none;
}

.orderConfiList > li:first-child {
    border: none;
}

.orderConfiList > li.ocliDpNone + li {
    border: none;
}

.orderConfiList > li + li + .ocliDpNone + li {
    border-top: 1px solid #efefef;
}

.orderConfiList > li i {
    position: absolute;
    top: 20px;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
}

.orderConfiList > li i img {
    vertical-align: top;
}

.orderConfiList > li .tit {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.orderConfiList > li .txt {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.orderConfiList > li .txt strong {
    font-weight: 700;
}

.orderConfiList > li ul {
    margin-top: 8px;
}

.orderCsCenter {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 6px;
    background: #f7f7f7;
}

.orderCsCenter .tit {
    display: flex;
    align-items: center;
}

.orderCsCenter .tit:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background: url(../img/godo2023/ico_callcenter.svg) no-repeat center/100%;
}

.orderCsCenter .tit span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
}

.orderCsCenter .tit span:not(:first-child)::before {
    content: '';
    width: 1px;
    height: 14px;
    margin-left: 12px;
    background: #bfbfbf;
}

.orderCsCenter .txt {
    padding: 4px 0 0 32px;
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    color: #666;
}

.textItem {
    flex: 1 1 auto;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.infoBox {
    padding: 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    background: #f7f7f7;
}

.infoBox .icoAudio {
    height: 20px;
    width: 20px;
    vertical-align: -3px;
    display: inline-block;
    background: url("../img/godo2023/ico_audio.svg") no-repeat 50%;
}

.infoBox + .btnWrap {
    margin-top: 20px;
}

.infoBox em {
    color: #4130df;
}

.prodInfoText {
    margin-top: 8px;
    display: flex;
    font-size: 16px;
    line-height: 26px;
    column-gap: 25px;
    color: #666;
}

.prodInfoText li {
    display: flex;
    align-items: center;
    position: relative;
}

.prodInfoText li .colorChip {
    margin-right: 8px;
}

.prodInfoText li:nth-child(n + 2):after {
    position: absolute;
    top: calc(50% - 6px);
    left: -12px;
    content: '';
    pointer-events: none;
    height: 11px;
    width: 1px;
    background: #bfbfbf;
}

.colorChip {
    display: inline-block;
    height: 12px;
    width: 12px;
    border-radius: 6px;
    background: #fff;
}

.emsList {
    counter-reset: number 0;
    margin-top: 24px;
    padding: 8px 28px;
    border-radius: 8px;
    border: 1px solid #efefef;
}

.emsList > li {
    position: relative;
    padding: 20px 0 20px 30px;
}

.emsList > li .tit {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.emsList > li .desc {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.emsList > li:before {
    position: absolute;
    top: 25px;
    left: 0;
    counter-increment: number 1;
    content: counter(number);
    width: 20px;
    height: 20px;
    border-radius: 100%;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    background: #000;
    color: #fff;
}

.emsList > li + li {
    border-top: 1px solid #efefef;
}

.unavailableBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

.unavailableBox .key {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.unavailableBox .val {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.clubInfo {
    margin-top: 24px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    box-sizing: border-box;
}

.clubInfo li {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.clubInfo li .key {
    color: #666;
}

.clubInfo li + li {
    margin-top: 12px;
}

.comparisonList {
    display: flex;
    column-gap: 12px;
}

.comparisonList li {
    flex: 1 1 50%;
}

.comparisonItem {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 122px;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    box-sizing: border-box;
}

.comparisonItem .tit {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 240px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.comparisonItem .price {
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
    margin-top: 12px;
}

.comparisonItem .price .key {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.comparisonItem .price .val {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #ff4d4d;
}

.comparisonItem .price .val strong {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.comparisonItem .del {
    position: absolute;
    top: 13px;
    right: 12px;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/godo2023/ico_x.svg) no-repeat center/20px 20px;
    text-indent: -9999px;
    overflow: hidden;
}

.comparisonItem.empty {
    padding: 33px 16px;
    border: 1px dashed #4130df;
    justify-content: flex-end;
}

.comparisonItem.empty .txt {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #4130df;
}

.comparisonItem.empty:after {
    position: absolute;
    top: 34px;
    left: 50%;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin-left: -12px;
    background: url(../img/godo2023/ico_plus.svg) no-repeat center 100%;
}

.comparisonItem.select {
    border: 2px solid #4130df;
    padding: 27px;
    box-shadow: 0 2px 4px rgba(65, 48, 223, 0.18);
}

.comparisonSticky {
    padding-bottom: 12px;
}

.comparisonGraphList {
    margin-top: 48px;
}

.comparisonGraphList .tit {
    display: block;
    flex: 0 0 100px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
}

.comparisonGraphList .txt {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #444;
    margin-top: 8px;
}

.comparisonGraphList > li {
    display: flex;
}

.comparisonGraphList > li .item {
    display: flex;
    width: calc((100% - 80px) / 2);
    box-sizing: border-box;
    row-gap: 8px;
    flex-direction: column;
}

.comparisonGraphList > li.graphRow {
    column-gap: 40px;
}

.comparisonGraphList > li.graphRow .item:first-child {
    align-items: end;
}

.comparisonGraphList > li.graphRow .item:first-child .graph {
    border-radius: 8px 0 0 8px;
    background: #bfbfbf;
}

.comparisonGraphList > li.graphRow .item .graph {
    width: 20%;
    height: 28px;
    border-radius: 0 8px 8px 0;
    box-sizing: border-box;
    background: #aaa3ec;
}

.comparisonGraphList > li.graphRow .item.empty .graph {
    width: 100%;
    background: #fff;
    border: 1px dashed #bfbfbf;
}

.comparisonGraphList > li.graphRow .item .txt {
    font-weight: 700;
    color: #000;
}

.comparisonGraphList > li.graphRow + li {
    margin-top: 40px;
}

.comparisonGraphList > li.iconRow {
    column-gap: 10px;
    padding-top: 24px;
    align-items: center;
}

.comparisonGraphList > li.iconRow .item {
    display: block;
    width: calc((100% - 20px) / 2);
    text-align: center;
}

.comparisonGraphList > li.iconRow .item i {
    display: inline-block;
    width: 45px;
    height: 63px;
}

.comparisonGraphList > li.iconRow .item i + i {
    margin: 0 0 0 10px;
}

.comparisonGraphList > li.iconRow .item i:only-of-type {
    width: 80px;
    height: 80px;
}

.comparisonGraphList > li.iconRow .item i:only-of-type img {
    width: 80px;
    height: 80px;
}

.comparisonGraphList > li.iconRow.benefitRow {
    align-items: start;
}

.comparisonGraphList > li.iconRow.benefitRow .item > div + div {
    margin-top: 20px;
}

.comparisonGraphList > li.iconRow.benefitRow .tit {
    margin-top: 45px;
}

.comparisonGraphList > li + .iconRow {
    margin-top: 24px;
    border-top: 1px solid #efefef;
}

.comparisonGraphList > li.addRow {
    margin-top: 20px;
    column-gap: 100px;
}

.comparisonGraphList > li.addRow .box {
    width: calc((100% - 100px) / 2);
}

.comparisonGraphList > li.addRow .itemList {
    padding: 28px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #f7f7f7;
}

.comparisonGraphList > li.addRow .itemList > li .title {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: #444;
}

.comparisonGraphList > li.addRow .itemList > li + li {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e1e1e1;
}

.comparisonGraphList > li.addRow .itemList ul {
    margin-top: 8px;
}

.comparisonGraphList > li.addRow .itemList ul li {
    display: flex;
    column-gap: 8px;
}

.comparisonGraphList > li.addRow .itemList ul li i {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.comparisonGraphList > li.addRow .itemList ul li i img {
    width: 100%;
    vertical-align: top;
}

.comparisonGraphList > li.addRow .itemList ul li .text {
    flex: 1 1 50%;
    color: #444;
    font-size: 14px;
    line-height: 24px;
}

.comparisonGraphList > li.addRow .itemList ul li .price {
    flex: 1 1 auto;
    text-align: right;
    color: #ff4d4d;
    font-size: 13px;
    line-height: 23px;
}

.comparisonGraphList > li.addRow .itemList ul li + li {
    margin-top: 12px;
}

.comparisonGraphList .iconRow:nth-last-child(2) .item i:only-of-type {
    width: 45px;
    height: 63px;
}

.comparisonGraphList .iconRow:nth-last-child(2) .item i:only-of-type img {
    width: 45px;
    height: 63px;
}

.timeItem {
    position: relative;
    width: 69px;
    border: 1px solid #efefef;
    border-radius: 8px;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    line-height: 46px;
    font-weight: 500;
    color: #000;
}

.timeItem input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.timeItem:has(input:focus-visible), .timeItem:has(input:checked) {
    line-height: 44px;
    border: 2px solid #4130df;
    color: #4130df;
    box-shadow: 0 2px 4px 0 rgba(65, 48, 223, 0.0324);
}

.timeItem.checked {
    line-height: 44px;
    border: 2px solid #4130df;
    color: #4130df;
    box-shadow: 0 2px 4px 0 rgba(65, 48, 223, 0.0324);
}

.timeItem:has(input:disabled) {
    border-color: #e1e1e1;
    color: #e1e1e1;
}

.timeItem.disabled {
    border-color: #e1e1e1;
    color: #e1e1e1;
}

.timeBoxWrap {
    padding: 40px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.timeSelInfo {
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e1e1;
    font-weight: 700;
}

.timeBox {
    display: flex;
    column-gap: 20px;
}

.timeBox .box {
    flex: 1 1 50%;
}

.timeBox .box .tit {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #444;
}

.timeBox .box .list {
    display: flex;
    margin-top: 12px;
    gap: 8px;
    flex-wrap: wrap;
}

/*
염주성 S ---------------------------------------------------------------------------------------------------------------------------------------------------
*/
.tGiftTxt .text {
    padding: 28px;
    background-color: #f7f7f7;
    border-radius: 8px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.tGiftTxt .textInfo, .tGiftTxt .textInfoBlue, .tGiftTxt .textInfoRed, .tGiftTxt .textInfoBlack, .tGiftTxt .textInfoGray, .tGiftTxt .textInfoBlNline {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.tGiftItem {
    position: relative;
    display: flex;
    height: 132px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    box-sizing: border-box;
    /*  &:has(input:focus-visible),
  &:has(input:checked) {
    border: 2px solid $B100;
    .img {
      height: 126px;
    }
    .giftBadge {
      top: 9px;
      left: 9px;
    }
    .thumb {
      margin: -1px;
    }
    .info {
      padding: 19px;
    }
    .btnDetail {
      top: 9px;
      right: 9px;
    }
  }*/
}

.tGiftItem .img {
    flex: 0 0 140px;
    position: relative;
    height: 128px;
    width: 140px;
    background: #f7f7f7;
    border-radius: 8px 0 0 8px;
}

.tGiftItem .img .giftBadge {
    position: absolute;
    top: 10px;
    left: 10px;
}

.tGiftItem .img .giftBadgeNew {
    position: absolute;
    left: 6px;
    top: 6px;
    padding: 4px 8px;
    background: #4130df;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
}

.tGiftItem .img .giftBadgeBest {
    position: absolute;
    left: 6px;
    top: 6px;
    padding: 4px 8px;
    background: #ff6666;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
}

.tGiftItem .img .thumb {
    vertical-align: top;
    height: 128px;
    width: 100%;
    object-fit: contain;
}

.tGiftItem .info {
    padding: 20px;
    flex: 1 1 100%;
}

.tGiftItem .info .tit {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #444;
}

.tGiftItem .info .options {
    margin-top: 12px;
    display: flex;
    width: 100%;
    column-gap: 28px;
}

.tGiftItem .info .options .selectItem, .tGiftItem .info .options .selectCheckItem {
    flex: 1 1 100%;
}

.tGiftItem .info .options .selectItem > button[readonly]::after, .tGiftItem .info .options .selectCheckItem > button[readonly]::after {
    content: none;
}

.tGiftItem .info .options .selectItem .selectOptions, .tGiftItem .info .options .selectCheckItem .selectOptions {
    top: 48px;
}

.tGiftItem .info .options .btnSt, .tGiftItem .info .options body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .tGiftItem .info .options a, .tGiftItem .info .options body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .tGiftItem .info .options .cart-btn, .tGiftItem .info .options body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .tGiftItem .info .options .group-total-btn > a, .tGiftItem .info .options body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .tGiftItem .info .options .btn-primary, .tGiftItem .info .options body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .tGiftItem .info .options .btn-semi, .tGiftItem .info .options body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .tGiftItem .info .options .btn-outline-primary {
    flex: 0 0 auto;
}

.tGiftItem .btnSt, .tGiftItem body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .tGiftItem a, .tGiftItem body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .tGiftItem .cart-btn, .tGiftItem body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .tGiftItem .group-total-btn > a, .tGiftItem body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .tGiftItem .btn-primary, .tGiftItem body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .tGiftItem .btn-semi, .tGiftItem body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .tGiftItem .btn-outline-primary {
    position: relative;
    cursor: pointer;
}

.tGiftItem .btnSt input, .tGiftItem body .wrap.godo2023 .cart-empty-wrap .btns-wrap a input, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .tGiftItem a input, .tGiftItem body .wrap.godo2023 .my-cart-tbl .cart-btn input, body .wrap.godo2023 .my-cart-tbl .tGiftItem .cart-btn input, .tGiftItem body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a input, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .tGiftItem .group-total-btn > a input, .tGiftItem body .wrap.godo2023 .modal .btn-primary input, body .wrap.godo2023 .modal .tGiftItem .btn-primary input, .tGiftItem body .wrap.godo2023 .modal .btn-semi input, body .wrap.godo2023 .modal .tGiftItem .btn-semi input, .tGiftItem body .wrap.godo2023 .modal .btn-outline-primary input, body .wrap.godo2023 .modal .tGiftItem .btn-outline-primary input {
    position: absolute;
    opacity: 0;
}

.tGiftItem .btnDetail {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 24px;
    width: 24px;
    text-indent: -9999px;
    overflow: hidden;
    border-radius: 12px;
    background: url("../img/godo2023/ico_tgift_view.svg") no-repeat 50% 50%;
}

.tGiftItem + .tGiftItem {
    margin-top: 12px;
}

.popup-tgift .tgift-purchase-list .tgift-item {
    border: 1px solid red;
}

.checkpointWrap {
    background: #f7f7f7;
}

.checkpointWrap .lGrid {
    display: flex;
    padding: 60px 0;
    column-gap: 60px;
}

.checkpointWrap .lGrid .checkpointTitle {
    color: #000;
    flex: 0 0 300px;
}

.checkpointWrap .lGrid .checkpointTitle .title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.checkpointWrap .lGrid .checkpointTitle .menuList {
    margin-top: 40px;
}

.checkpointWrap .lGrid .checkpointTitle .menuList li.menuItem {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    display: flex;
    align-items: center;
}

.checkpointWrap .lGrid .checkpointTitle .menuList li.menuItem:after {
    content: '';
    height: 20px;
    width: 20px;
    margin-left: auto;
    background: url("../img/godo2023/ico_checkpoint_arr.svg") no-repeat 50% 50%;
}

.checkpointWrap .lGrid .checkpointTitle .menuList li.menuItem.on {
    font-weight: 700;
}

.checkpointWrap .lGrid .checkpointTitle .menuList li.menuItem.on button {
    color: #4130df;
}

.checkpointWrap .lGrid .checkpointTitle .menuList li.menuItem.on:after {
    background-image: url("../img/godo2023/ico_checkpoint_arr_on.svg");
}

.checkpointWrap .lGrid .checkpointTitle .menuList li + li {
    margin-top: 28px;
}

.checkpointWrap .lGrid .checkpointCont .contWrap {
    color: #666;
}

.checkpointWrap .lGrid .checkpointCont .contWrap .title-sub {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #000;
    margin-bottom: 40px;
}

.checkpointWrap .lGrid .checkpointCont .contWrap p {
    line-height: 1.5;
}

.checkpointWrap .lGrid .checkpointCont .contWrap ul {
    margin-top: 10px;
}

.checkpointWrap .lGrid .checkpointCont .contWrap ul li {
    position: relative;
    padding-left: 11px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    word-break: break-word !important;
}

.checkpointWrap .lGrid .checkpointCont .contWrap ul li:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 0;
    height: 3px;
    width: 3px;
    border-radius: 50%;
    background: #bfbfbf;
}

.checkpointWrap .lGrid .checkpointCont .contWrap ul li + li {
    margin-top: 8px;
}

.checkpointWrap .lGrid .checkpointCont .contWrap .c-term .table-term th {
    background: transparent;
}

section[data-modal-id='t_gift'] {
    overflow-y: hidden;
}

section[data-modal-id='t_gift'] .imgSwiper {
    overflow-y: clip;
}

section[data-modal-id='t_gift'] .noticeWrap .noticeList .subTitle:not(:first-child), section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .subTitle:not(:first-child) {
    margin-top: 40px !important;
}

section[data-modal-id='t_gift'] .noticeWrap .noticeList .bulletList:last-child .bulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .bulletList:last-child .bulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeList .notiCon ul:last-child .bulletItem:last-child, .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeList ul:last-child .bulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .notiCon ul:last-child .bulletItem:last-child, .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeWrap ul:last-child .bulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeList .acc-menu-cnt .txList03:last-child .bulletItem:last-child, .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeList .txList03:last-child .bulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .acc-menu-cnt .txList03:last-child .bulletItem:last-child, .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .txList03:last-child .bulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeList .acc-menu-cnt .txList05:last-child .bulletItem:last-child, .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeList .txList05:last-child .bulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .acc-menu-cnt .txList05:last-child .bulletItem:last-child, .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .txList05:last-child .bulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeList .bulletList:last-child .modalTable .tableBulletItem:last-child, .modalTable section[data-modal-id='t_gift'] .noticeWrap .noticeList .bulletList:last-child .tableBulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .bulletList:last-child .modalTable .tableBulletItem:last-child, .modalTable section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .bulletList:last-child .tableBulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeList .notiCon ul:last-child .modalTable .tableBulletItem:last-child, .modalTable section[data-modal-id='t_gift'] .noticeWrap .noticeList .notiCon ul:last-child .tableBulletItem:last-child, .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeList ul:last-child .modalTable .tableBulletItem:last-child, .modalTable .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeList ul:last-child .tableBulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .notiCon ul:last-child .modalTable .tableBulletItem:last-child, .modalTable section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .notiCon ul:last-child .tableBulletItem:last-child, .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeWrap ul:last-child .modalTable .tableBulletItem:last-child, .modalTable .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeWrap ul:last-child .tableBulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeList .acc-menu-cnt .txList03:last-child .modalTable .tableBulletItem:last-child, .modalTable section[data-modal-id='t_gift'] .noticeWrap .noticeList .acc-menu-cnt .txList03:last-child .tableBulletItem:last-child, .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeList .txList03:last-child .modalTable .tableBulletItem:last-child, .modalTable .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeList .txList03:last-child .tableBulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .acc-menu-cnt .txList03:last-child .modalTable .tableBulletItem:last-child, .modalTable section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .acc-menu-cnt .txList03:last-child .tableBulletItem:last-child, .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .txList03:last-child .modalTable .tableBulletItem:last-child, .modalTable .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .txList03:last-child .tableBulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeList .acc-menu-cnt .txList05:last-child .modalTable .tableBulletItem:last-child, .modalTable section[data-modal-id='t_gift'] .noticeWrap .noticeList .acc-menu-cnt .txList05:last-child .tableBulletItem:last-child, .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeList .txList05:last-child .modalTable .tableBulletItem:last-child, .modalTable .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeList .txList05:last-child .tableBulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .acc-menu-cnt .txList05:last-child .modalTable .tableBulletItem:last-child, .modalTable section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .acc-menu-cnt .txList05:last-child .tableBulletItem:last-child, .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .txList05:last-child .modalTable .tableBulletItem:last-child, .modalTable .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .txList05:last-child .tableBulletItem:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeList .bulletList:last-child .notiCon ul li:last-child, .notiCon ul section[data-modal-id='t_gift'] .noticeWrap .noticeList .bulletList:last-child li:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .bulletList:last-child .notiCon ul li:last-child, .notiCon ul section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .bulletList:last-child li:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeList .notiCon ul:last-child li:last-child, .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeList ul:last-child li:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .notiCon ul:last-child li:last-child, .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeWrap ul:last-child li:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeList .bulletList:last-child .acc-menu-cnt .txList03 li:last-child, .acc-menu-cnt .txList03 section[data-modal-id='t_gift'] .noticeWrap .noticeList .bulletList:last-child li:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .bulletList:last-child .acc-menu-cnt .txList03 li:last-child, .acc-menu-cnt .txList03 section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .bulletList:last-child li:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeList .notiCon ul:last-child .acc-menu-cnt .txList03 li:last-child, .acc-menu-cnt .txList03 section[data-modal-id='t_gift'] .noticeWrap .noticeList .notiCon ul:last-child li:last-child, .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeList ul:last-child .acc-menu-cnt .txList03 li:last-child, .acc-menu-cnt .txList03 .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeList ul:last-child li:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .notiCon ul:last-child .acc-menu-cnt .txList03 li:last-child, .acc-menu-cnt .txList03 section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .notiCon ul:last-child li:last-child, .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeWrap ul:last-child .acc-menu-cnt .txList03 li:last-child, .acc-menu-cnt .txList03 .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeWrap ul:last-child li:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeList .acc-menu-cnt .txList03:last-child li:last-child, .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeList .txList03:last-child li:last-child, section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .acc-menu-cnt .txList03:last-child li:last-child, .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .txList03:last-child li:last-child,
section[data-modal-id='t_gift'] .noticeWrap .noticeList .bulletList:last-child .acc-menu-cnt .txList05 li:last-child, .acc-menu-cnt .txList05 section[data-modal-id='t_gift'] .noticeWrap .noticeList .bulletList:last-child li:last-child,
section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .bulletList:last-child .acc-menu-cnt .txList05 li:last-child, .acc-menu-cnt .txList05 section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .bulletList:last-child li:last-child,
section[data-modal-id='t_gift'] .noticeWrap .noticeList .notiCon ul:last-child .acc-menu-cnt .txList05 li:last-child, .acc-menu-cnt .txList05 section[data-modal-id='t_gift'] .noticeWrap .noticeList .notiCon ul:last-child li:last-child, .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeList ul:last-child .acc-menu-cnt .txList05 li:last-child, .acc-menu-cnt .txList05 .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeList ul:last-child li:last-child,
section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .notiCon ul:last-child .acc-menu-cnt .txList05 li:last-child, .acc-menu-cnt .txList05 section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .notiCon ul:last-child li:last-child, .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeWrap ul:last-child .acc-menu-cnt .txList05 li:last-child, .acc-menu-cnt .txList05 .notiCon section[data-modal-id='t_gift'] .noticeWrap .noticeWrap ul:last-child li:last-child,
section[data-modal-id='t_gift'] .noticeWrap .noticeList .acc-menu-cnt .txList05:last-child li:last-child, .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeList .txList05:last-child li:last-child,
section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .acc-menu-cnt .txList05:last-child li:last-child, .acc-menu-cnt section[data-modal-id='t_gift'] .noticeWrap .noticeWrap .txList05:last-child li:last-child {
    margin-bottom: 0px !important;
}

section[data-modal-id='share'] .inputItem.focus, section[data-modal-id='share'] .focus.inputItemNline {
    border-bottom: 2px solid #4130df;
}

.lineBnrArea {
    margin-top: 60px;
}

.lineBnrArea img {
    vertical-align: top;
}

.productDetail {
    padding: 60px 0;
}

.productDetail .productImg {
    max-height: 1000px;
    overflow: hidden;
}

.productDetail .productImg img {
    max-width: 100%;
}

.productDetail .productImg.active {
    max-height: none;
}

.productDetail .productImg .noticeList > li + li, .productDetail .productImg .noticeWrap > li + li {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.productDetail .prodMore {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    height: 84px;
    width: 240px;
    color: #444;
    border: 1px solid #e1e1e1;
    margin-top: 40px;
    border-radius: 8px;
}

.productDetail .prodMore:after {
    content: '';
    height: 20px;
    width: 20px;
    background: url("../img/godo2023/ico_prod_more.svg") no-repeat 50% 50%;
}

.wideTab {
    z-index: 15;
    padding-top: 60px;
    position: sticky;
    top: 283px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #4130df;
    background: #fff;
    transition: top 0.3s linear;
}

.wideTab ul {
    display: flex;
    background: #fff;
}

.wideTab ul li {
    flex: 1 1 0;
    text-align: center;
}

.wideTab ul li a {
    display: block;
    padding: 20px 28px;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    color: #444;
    height: 71px;
    border: 1px solid #e1e1e1;
    box-sizing: border-box;
    border-bottom-color: #4130df;
    margin-bottom: -1px;
}

.wideTab ul li a[data-active] {
    z-index: 2;
    position: relative;
    color: #4130df;
    font-weight: 700;
    border-color: #4130df;
    border-bottom-color: #fff;
}

.wideTab ul li + li {
    margin-left: -1px;
}

.scroll-down .wideTab {
    top: 115px;
}

.noticeBottom {
    background: #f7f7f7;
}

.noticeBottom .lGrid {
    padding: 60px 0;
}

.prodTopInfo {
    display: flex;
    column-gap: 60px;
    padding-top: 60px;
    justify-content: space-between;
    min-height: 772px;
}

.prodTopInfo .prodSwiper {
    position: relative;
    /* position: sticky;
    top: 0;
    left: 0;*/
    flex: 1 1 auto;
    width: 720px;
    height: 720px;
    box-sizing: border-box;
    border-radius: 12px;
    background: #f7f7f7;
}

.prodTopInfo .prodSwiper .swiper {
    height: 100%;
}

.prodTopInfo .prodSwiper .swiper .video,
.prodTopInfo .prodSwiper .swiper .imgBox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.prodTopInfo .prodSwiper .swiper .video video,
.prodTopInfo .prodSwiper .swiper .video img,
.prodTopInfo .prodSwiper .swiper .imgBox video,
.prodTopInfo .prodSwiper .swiper .imgBox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.prodTopInfo .prodSwiper .swiper video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.prodTopInfo .prodSwiper .swiper video::-webkit-media-controls-current-time-display {
    display: none !important;
}

.prodTopInfo .prodSwiper .swiper video::-webkit-media-controls-timeline {
    display: none !important;
}

.prodTopInfo .prodSwiper .swiper video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.prodTopInfo .prodSwiper .swiperPagination {
    position: absolute;
    top: calc(100% + 20px);
    left: 60px;
    right: 60px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    column-gap: 12px;
}

.prodTopInfo .prodSwiper .swiperPagination .swiper-pagination-bullet {
    margin: 0;
    height: 12px;
    width: 12px;
    border-radius: 6px;
    opacity: 1;
    background: #bfbfbf;
    transition: all 300ms ease-in-out 0s;
}

.prodTopInfo .prodSwiper .swiperPagination .swiper-pagination-bullet.video {
    height: 32px;
    width: 32px;
    border-radius: 16px;
    background: url("../img/godo2023/ico_prod_video.svg") no-repeat 50% 50%;
}

.prodTopInfo .prodSwiper .swiperPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 32px;
    background: #4130df;
}

.prodTopInfo .prodSwiper .swiperPagination .swiper-pagination-bullet.swiper-pagination-bullet-active.video {
    width: 32px;
    background-image: url("../img/godo2023/ico_prod_video_on.svg");
}

.prodTopInfo .prodSwiper .swiperNavigation {
    left: -30px;
    right: -30px;
    width: auto;
}

.prodTopInfo .prodOptions {
    flex: 0 0 auto;
    width: 400px;
}

.prodTopInfo .prodOptions .payChoice .btnRadio .text {
    width: 100%;
    color: #000;
}

.prodTopInfo .prodOptions .payChoice .btnRadio .text strong {
    font-weight: 700;
}

.prodTopInfo .prodOptions .payChoice .btnRadio .text em {
    margin-left: auto;
    font-weight: 500;
}

.prodTopInfo .prodOptions .payChoice .btnRadio:has(input[type='radio']:checked) .text, .prodTopInfo .prodOptions .payChoice .btnRadio.checked .text {
    color: #4130df;
}

.prodTopInfo .prodOptions .payChoice .btnRadio:has(input[type='radio']:disabled) .text, .prodTopInfo .prodOptions .payChoice .btnRadio.disabled .text {
    color: #bfbfbf;
}

.prodTopInfo .prodOptions h3 {
    margin-top: 60px;
    font-size: 22px;
    line-height: 32px;
    color: #000;
}

.prodTopInfo .prodOptions .color {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.expertTit {
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    background: #fff;
}

.expertInfo {
    width: 100%;
    display: flex;
    column-gap: 25px;
    padding: 10px 0;
    margin: 10px 0 30px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    background: #fff;
}

.expertInfo li {
    position: relative;
}

.expertInfo li.name {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.expertInfo li.name:before {
    content: '';
    display: inline-block;
    height: 24px;
    width: 24px;
    background: url("../img/godo2023/ico_crown.svg") no-repeat 50% 40%;
}

.expertInfo li + li:after {
    content: '';
    position: absolute;
    left: -13px;
    top: calc(50% - 5px);
    width: 1px;
    height: 11px;
    background: #bfbfbf;
    pointer-events: none;
}

section[data-modal-id='restock'] div[data-page='2'] .modalFooter button.secondary1, section[data-modal-id='restock'] div[data-page='2'] .modalFooter body .wrap.godo2023 .my-cart-tbl button.cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl section[data-modal-id='restock'] div[data-page='2'] .modalFooter button.cart-btn.cart-btn-talk, section[data-modal-id='restock'] div[data-page='2'] .modalFooter body .wrap.godo2023 .my-cart-tbl button.cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl section[data-modal-id='restock'] div[data-page='2'] .modalFooter button.cart-btn.cart-btn-sold-out:not(.cart-btn-other), section[data-modal-id='restock'] div[data-page='2'] .modalFooter body .wrap.godo2023 .modal button.btn-outline-primary, body .wrap.godo2023 .modal section[data-modal-id='restock'] div[data-page='2'] .modalFooter button.btn-outline-primary,
section[data-modal-id='restock'] div[data-page='3'] .modalFooter button.secondary1,
section[data-modal-id='restock'] div[data-page='3'] .modalFooter body .wrap.godo2023 .my-cart-tbl button.cart-btn.cart-btn-talk,
body .wrap.godo2023 .my-cart-tbl section[data-modal-id='restock'] div[data-page='3'] .modalFooter button.cart-btn.cart-btn-talk,
section[data-modal-id='restock'] div[data-page='3'] .modalFooter body .wrap.godo2023 .my-cart-tbl button.cart-btn.cart-btn-sold-out:not(.cart-btn-other),
body .wrap.godo2023 .my-cart-tbl section[data-modal-id='restock'] div[data-page='3'] .modalFooter button.cart-btn.cart-btn-sold-out:not(.cart-btn-other),
section[data-modal-id='restock'] div[data-page='3'] .modalFooter body .wrap.godo2023 .modal button.btn-outline-primary,
body .wrap.godo2023 .modal section[data-modal-id='restock'] div[data-page='3'] .modalFooter button.btn-outline-primary {
    border-color: #666;
    color: #666;
}

.restockComplete {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

.restockComplete .ico {
    vertical-align: top;
}

.restockComplete .tit {
    display: block;
    margin-top: 20px;
    font-size: 22px;
    line-height: 32px;
}

.restockComplete .prodInfoText {
    margin-top: 20px;
}

.restockComplete .tel {
    display: block;
    margin-top: 12px;
    font-size: 18px;
    line-height: 28px;
    color: #4130df;
}

.restockComplete .infoBox {
    width: calc(100% - 56px);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #444;
    padding: 20px;
}

.addCompare {
    z-index: 10;
    position: sticky;
    top: 0;
    padding: 0 0 12px;
    display: flex;
    column-gap: 12px;
    background: #fff;
}

.addCompare .compareItem,
.addCompare .addBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 1 50%;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-sizing: border-box;
    text-align: center;
}

.addCompare .compareItem {
    position: relative;
    border: 1px solid #efeeff;
    min-height: 96px;
}

.addCompare .compareItem .title {
    display: block;
    font-size: 18px;
    line-height: 28px;
    word-break: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.addCompare .compareItem .desc {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    line-height: 18px;
}

.addCompare .compareItem .price {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    line-height: 24px;
    color: #ff4d4d;
}

.addCompare .compareItem .delete {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 24px;
    width: 24px;
    text-indent: -9999px;
    background: url("../img/godo2023/ico_delete.svg") no-repeat;
}

.addCompare .compareItem:not(.compareTarget) {
    border: 2px solid #4130df;
    box-shadow: 0 2px 4px rgba(65, 48, 223, 0.18);
    padding: 18px 16px;
}

.addCompare .addBtn {
    color: #4130df;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 12px;
    font-size: 14px;
    line-height: 24px;
    border: 1px dashed #4130df;
}

.addCompare .addBtn:before {
    content: '';
    height: 20px;
    width: 20px;
    background: url("../img/godo2023/ico_benefit_add.svg") no-repeat 50% 50%/cover;
}

.compareOrder .infoTextWrap {
    margin-top: 28px;
}

.compareOrder .compareGraph {
    margin-top: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 20px;
}

.compareOrder .compareGraph > .lumpSum {
    flex: 1 1 calc((100% - 15px) / 2);
    text-align: center;
    font-size: 18px;
    line-height: 28px;
}

.compareOrder .compareGraph > .lumpSum span {
    font-weight: 700;
}

.compareOrder .compareGraph > .graphItem {
    flex: 1 1 calc((100% - 15px) / 2);
}

.compareOrder .compareGraph > .graphItem .graph {
    position: relative;
    display: block;
    margin: 0 auto;
    height: 250px;
    width: 136px;
    box-sizing: border-box;
    padding: 0 20px;
    border-radius: 8px 8px 0 0;
}

.compareOrder .compareGraph > .graphItem .graph > ul {
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 96px;
    max-height: inherit;
    padding: 0 20px;
    background: #f8f8ff;
    border-radius: 0.8rem 0.8rem 0 0;
}

.compareOrder .compareGraph > .graphItem .graph > ul li {
    display: block;
    position: relative;
    text-align: center;
    align-items: center;
    font-size: 12px;
    line-height: 18px;
}

.compareOrder .compareGraph > .graphItem .graph > ul li > span {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    margin-top: -10px;
    transform: translate(-50%, -50%);
}

.compareOrder .compareGraph > .graphItem .graph > ul li > strong {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    margin-top: 10px;
    transform: translate(-50%, -50%);
}

.compareOrder .compareGraph > .graphItem .graph > ul li.graphItem1 {
    color: #4130df;
}

.compareOrder .compareGraph > .graphItem .graph > ul li.graphItem2 {
    color: #ff4d4d;
    border: dashed #ff4d4d;
    border-width: 1px 1px 0 1px;
    border-radius: 6px 6px 0 0;
    background: #fff3f3;
}

.compareOrder .compareGraph > .graphItem .graph > ul li.graphItem2 + .graphItem3 {
    border-radius: 0;
}

.compareOrder .compareGraph > .graphItem .graph > ul li.graphItem2 + .graphItem3:after {
    content: '';
    position: absolute;
    top: -1px;
    left: calc(50% - 7px);
    border: solid transparent;
    border-width: 7px 7px 0 7px;
    border-top-color: #fff3f3;
}

.compareOrder .compareGraph > .graphItem .graph > ul li.graphItem3 {
    position: relative;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
    background: #4130df;
}

.compareOrder .compareGraph > .graphItem .graph > ul li.graphItem3 strong {
    font-size: 14px;
    line-height: 24px;
}

.compareOrder .compareGraph > .graphItem .graph.long {
    height: 258px;
}

.compareOrder .compareGraph > .graphItem .graph.short {
    height: 186px;
}

.compareOrder .compareGraph + .addCompare {
    margin-top: 24px;
}

.compareOrder .compare {
    text-align: center;
}

.compareOrder .compare > li {
    padding: 24px 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    line-height: 26px;
}

.compareOrder .compare > li .title {
    display: flex;
    justify-content: center;
    order: 2;
    font-weight: 500;
    flex: 0 0 100px;
}

.compareOrder .compare > li .compareItem {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    order: 3;
}

.compareOrder .compare > li .compareItem .origin {
    font-size: 16px;
    line-height: 26px;
    color: #444;
}

.compareOrder .compare > li .compareItem .price {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.compareOrder .compare > li .compareItem .price.up:before, .compareOrder .compare > li .compareItem .price.down:before {
    content: '';
    display: inline-block;
    vertical-align: 1px;
    border: solid transparent;
    border-width: 0 5px;
}

.compareOrder .compare > li .compareItem .price.down {
    color: #ff4d4d;
}

.compareOrder .compare > li .compareItem .price.down:before {
    border-top: 8px solid #ff0000;
}

.compareOrder .compare > li .compareItem .price.up {
    color: #4130df;
}

.compareOrder .compare > li .compareItem .price.up:before {
    border-bottom: 8px solid #4130df;
}

.compareOrder .compare > li .compareItem .desc {
    font-size: 13px;
    line-height: 23px;
    color: #909090;
}

.compareOrder .compare > li .compareItem.compareTarget {
    order: 1;
}

.compareOrder .compare > li .tip {
    display: flex;
    align-items: center;
    column-gap: 8px;
    order: 4;
    width: 100%;
    margin: 20px 0 0;
    padding: 12px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    border-radius: 6px;
    color: #000;
    background: #fff;
}

.compareOrder .compare > li .tip em {
    color: #4130df;
}

.compareOrder .compare > li .tip:before {
    display: inline-block;
    content: '';
    height: 18px;
    width: 36px;
    background: url("../img/godo2023/ico_tip.svg") no-repeat 50% 50%/contain;
}

.compareOrder .compare > li + li {
    border-top: 1px solid #efefef;
}

.compareOrder .compare > li:first-child {
    margin-top: 18px;
}

.compareOrder .compare > li.total {
    align-items: flex-start;
    position: relative;
    margin-top: 8px;
    padding: 28px;
    border-top: none;
    border-radius: 8px;
    background: #f5f4fc;
}

.compareOrder .compare > li.total .title {
    font-weight: 700;
}

.compareOrder .compare > li.total .compareItem {
    row-gap: 4px;
}

.compareOrder .compare > li.total:after {
    content: '';
    position: absolute;
    top: -1px;
    left: calc(50% - 10px);
    border: solid transparent;
    border-width: 10px 10px 0 10px;
    border-top-color: #fff;
}

.compareOrder .compare > li.total .origin {
    font-weight: 700;
    color: #4130df;
}

.compareOrder .compare > li.total .desc {
    color: #666;
}

.compareOrder h3 {
    margin-top: 40px;
    font-size: 18px;
    line-height: 28px;
}

.compareOrder .compareText {
    margin-top: 20px;
    text-align: center;
}

.compareOrder .compareText > li:first-child li {
    padding-top: 20px;
    border-radius: 8px 8px 0 0;
    border-top-width: 1px;
}

.compareOrder .compareText > li:nth-child(n + 2) li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: #f7f7f7;
}

.compareOrder .compareText > li:last-child li {
    padding-bottom: 20px;
    border-radius: 0 0 8px 8px;
    border-bottom-width: 1px;
}

.compareOrder .compareText > li ul {
    display: flex;
    column-gap: 12px;
}

.compareOrder .compareText > li ul li {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    border: solid #e1e1e1;
    border-width: 0 1px;
    box-sizing: border-box;
    flex: 0 0 calc((100% - 12px) / 2);
    row-gap: 4px;
    font-size: 16px;
    line-height: 26px;
}

.compareOrder .compareText > li ul li .tit {
    color: #444;
    text-align: left;
}

.compareOrder .compareText > li ul li .txt {
    font-weight: 700;
    text-align: right;
    color: #4130df;
}

.compareOrder .underBtnArea {
    position: sticky;
    left: 0;
    bottom: 0;
    width: 100vw;
    margin-left: -20px;
    padding-top: 8px;
    background: #fff;
}

.receipt {
    position: relative;
    margin-top: 24px;
    padding: 28px 28px 13px;
    border: solid #e1e1e1;
    border-width: 1px 1px 0;
    background: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}

.receipt .total {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.receipt .total > .tit {
    color: #000;
}

.receipt .total > .tit span {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #909090;
}

.receipt .total > .price {
    font-weight: 700;
    color: #ff4d4d !important;
}

.receipt .total > .price span {
    font-weight: 400;
}

.receipt .total + .total {
    margin-top: 8px;
}

.receipt .depth1 {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f7f7f7;
}

.receipt .depth1 > li {
    font-size: 16px;
    line-height: 26px;
}

.receipt .depth1 > li > .tit {
    font-weight: 500;
}

.receipt .depth1 > li > .price {
    font-weight: 700;
}

.receipt .depth1 > li > .price span {
    font-weight: 400;
}

.receipt .depth1 > li + li {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f7f7f7;
}

.receipt .depth2 {
    margin-top: 8px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.receipt .depth2 > li > .tit {
    color: #666;
    font-weight: 400;
}

.receipt .depth2 > li > .price {
    color: #444;
}

.receipt .depth2 > li + li {
    margin-top: 4px;
}

.receipt .depth3, .receipt .depth3Nline {
    margin-top: 4px;
    font-size: 14px;
    line-height: 24px;
}

.receipt .depth3 > li > .tit, .receipt .depth3Nline > li > .tit {
    color: #909090;
    font-weight: 400;
    padding-left: 5px;
}

.receipt .depth3 > li > .price, .receipt .depth3Nline > li > .price {
    color: #909090;
}

.receipt .item {
    display: flex;
    flex-wrap: wrap;
}

.receipt .item > .price {
    margin-left: auto;
}

.receipt .item > ul {
    width: 100%;
}

.receipt:after {
    content: '';
    position: absolute;
    top: 100%;
    left: -1px;
    height: 20px;
    width: calc(100% + 2px);
    background: url("../img/godo2023/bg_receipt.png") repeat-x 0 100%;
}

.contactYear {
    margin-top: 24px;
    display: flex;
    column-gap: 12px;
}

.contactYear .contactItem {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 1 50%;
    min-height: 224px;
    border-radius: 8px;
}

.contactYear .contactItem .inner {
    flex: 1 1 auto;
    justify-content: space-evenly;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 8px;
    padding: 18px 28px;
    box-sizing: border-box;
}

.contactYear .contactItem .inner input[type='radio'] {
    position: absolute;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.contactYear .contactItem .inner .flag {
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    border-radius: 4px;
    background: #4130df;
}

.contactYear .contactItem .inner .tit {
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
}

.contactYear .contactItem .inner .contactSelect {
    position: relative;
    display: flex;
    width: 100%;
}

.contactYear .contactItem .inner .contactSelect label {
    z-index: 2;
    position: relative;
    flex: 1 1 0;
    padding: 8px 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    color: #666;
}

.contactYear .contactItem .inner .contactSelect label:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1px solid transparent;
}

.contactYear .contactItem .inner .contactSelect label:has(input:checked) {
    color: #4130df;
}

.contactYear .contactItem .inner .contactSelect label:has(input:checked):after {
    border-color: #4130df;
}

.contactYear .contactItem .inner .contactSelect label.checked {
    color: #4130df;
}

.contactYear .contactItem .inner .contactSelect label.checked:after {
    border-color: #4130df;
}

.contactYear .contactItem .inner .contactSelect:after {
    content: '';
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    pointer-events: none;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
}

.contactYear .contactItem .inner .txt {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #4130df;
}

.contactYear .contactItem .inner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #e1e1e1;
    pointer-events: none;
    border-radius: 8px;
}

.contactYear .contactItem .inner:has(input.contactIpt:checked):after {
    border: 2px solid #4130df;
}

.contactYear .contactItem .inner.checked:after {
    border: 2px solid #4130df;
}

.contactYear .contactItem .inner.disabled .flag {
    display: none;
}

.contactYear .contactItem .inner.disabled .tit,
.contactYear .contactItem .inner.disabled .txt {
    color: #bfbfbf;
}

.contactYear .contactItem .inner.disabled ~ .total .txt {
    color: #bfbfbf;
}

.contactYear .contactItem:has(input.contactIpt:checked) {
    box-shadow: 0 2px 4px 0 rgba(65, 48, 223, 0.18);
}

.contactYear .contactItem.checked {
    box-shadow: 0 2px 4px 0 rgba(65, 48, 223, 0.18);
}

.contactYear .contactItem .total {
    flex: 0 0 auto;
    display: flex;
    padding: 12px 28px;
    border-radius: 0 0 8px 8px;
    font-size: 16px;
    line-height: 26px;
    background: #f7f7f7;
}

.contactYear .contactItem .total .mPay {
    font-size: 14px;
    color: #444;
}

.contactYear .contactItem .total .tPay {
    color: #ff4d4d;
    margin-left: auto;
}

.contactYear .contactItem .total .txt {
    font-weight: 500;
    font-size: 14px;
    color: #909090;
}

.contactYearInfo {
    margin-top: 24px;
}

.contactYearInfo .contactYearInfoItem {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #909090;
}

.contactYearInfo .contactYearInfoItem:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 2px;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../img/icon_info.png") no-repeat;
    background-size: 100% 100%;
    transform: translateY(-50%);
}

.installment {
    margin-top: 24px;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

.installment .prodPrice {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #000;
}

.installment .prodPrice strong {
    color: #4130df;
}

.installment .paySelector {
    margin-top: 15px;
    display: flex;
    column-gap: 12px;
    font-size: 18px;
    line-height: 44px;
    color: #000;
}

.installment .paySelector .selectItem.md .selectOptions li button, .installment .paySelector .md.selectCheckItem .selectOptions li button,
.installment .paySelector .md.selectCheckItem .selectOptions li button {
    font-size: 14px;
}

.installment .payInfo {
    margin-top: 20px;
}

.installment .payInfo li {
    position: relative;
    padding-left: 8px;
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    vertical-align: middle;
    color: #909090;
}

.installment .payInfo li:before {
    content: "";
    position: absolute;
    top: 46%;
    left: 0;
    display: inline-block;
    width: 3px;
    height: 3px;
    background-color: #BFBFBF;
    border-radius: 15px;
}

.installment .monthPay {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    border-radius: 6px;
    background: #f7f7f7;
}

.installment .monthPay dt {
    color: #666;
}

.installment .monthPay dd {
    color: #ff4d4d;
}

.installment .monthPay dd strong {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

.swiperNavigation {
    position: relative;
    display: flex;
    margin-top: 24px;
    justify-content: center;
    align-items: center;
}

.swiperNavigation .swiperPagination {
    order: 2;
    width: auto;
    margin: 0 40px;
    font-size: 12px;
    font-weight: 400;
    color: #000;
}

.swiperNavigation .swiperPagination .swiper-pagination-current {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: #4130df;
}

.swiperNavigation .swiperPagination .swiper-pagination-total {
    font-size: 14px;
    line-height: 24px;
}

.swiperNavigation .swiperButtonPrev,
.swiperNavigation .swiperButtonNext {
    position: relative;
    height: 32px;
    width: 32px;
    border: 1px solid #e1e1e1;
}

.swiperNavigation .swiperButtonPrev:before,
.swiperNavigation .swiperButtonNext:before {
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    height: 7px;
    width: 7px;
    border: solid #444;
    border-width: 1px 0 0 1px;
    transition: border-color 200ms ease-in-out 0s;
}

.swiperNavigation .swiperButtonPrev.swiper-button-disabled:before,
.swiperNavigation .swiperButtonNext.swiper-button-disabled:before {
    border-color: rgba(0, 0, 0, 0.2);
}

.swiperNavigation .swiperButtonPrev {
    border-radius: 4px 0 0 4px;
    order: 1;
}

.swiperNavigation .swiperButtonPrev:before {
    left: calc(50% - 2px);
    transform: rotate(-45deg);
}

.swiperNavigation .swiperButtonNext {
    border-radius: 0 4px 4px 0;
    order: 3;
}

.swiperNavigation .swiperButtonNext:before {
    right: calc(50% - 2px);
    transform: rotate(135deg);
}

/*
김원경 S ---------------------------------------------------------------------------------------------------------------------------------------------------
*/
.bulletItem .txt, .modalTable .tableBulletItem .txt, .notiCon ul li .txt, .acc-menu-cnt .txList03 li .txt, .acc-menu-cnt .txList05 li .txt {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

.subTxt {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #666;
}

.warnInfoBox {
    display: flex;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
    background: #f7f7f7;
}

.warnInfoBox.clmn {
    flex-direction: column;
    text-align: center;
}

.warnInfoBox.clmn .textInfoBlack, .warnInfoBox.clmn .textInfoGray {
    justify-content: center;
}

.warnInfoBox.clmn .textbtmDetail {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    color: #666;
}

.textInfoBlue {
    justify-content: center;
    margin-top: 40px;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #4130df;
    padding: 28px;
    border-radius: 6px;
    background: #f5f4fc;
}

.textInfoBlue:before {
    height: 20px;
    width: 20px;
    vertical-align: -4px;
    margin-right: 4px;
    background-image: url("../img/godo2023/ico_text_info_primary.svg");
}

.textInfoBlue span {
    font-weight: 400;
}

.textInfoRed {
    font-size: 14px;
    line-height: 24px;
    color: #ff0000;
}

.textInfoRed:before {
    height: 20px;
    width: 20px;
    vertical-align: -4px;
    margin-right: 4px;
    background: url("../img/godo2023/ico_text_info_red.svg") no-repeat 50% 50%;
}

.textInfoRed span {
    font-weight: 400;
}

.textInfoBlack, .textInfoGray {
    font-size: 16px;
    line-height: 26px;
    color: #444;
    font-weight: 500 !important;
}

.textInfoBlack:before, .textInfoGray:before {
    height: 20px;
    width: 20px;
    vertical-align: -4px;
    margin-right: 4px;
    background: url("../img/godo2023/ico_text_info_black.svg") no-repeat 50% 50%;
}

.textInfoBlack span, .textInfoGray span {
    font-weight: 400;
}

.textInfoBlack.fcG70, .fcG70.textInfoGray {
    color: #444;
}

.grade {
    display: inline-flex;
    align-items: center;
    /* 전체 다 바껴야 함 개발에서 안나옴 */
}

.grade .c-score {
    position: relative;
    width: 100px;
    height: 20px;
    overflow: hidden;
    text-indent: -9999px;
    background: url(../img/godo2023/ico_star_off.svg) repeat-x 0 2px;
}

.grade .c-score .score {
    width: 0;
    height: 100%;
    position: absolute;
    left: -2px;
    top: 0;
    display: block;
    background: url(../img/godo2023/ico_star_on.svg) repeat-x 0 0;
}

.grade .c-score .score.score1 {
    width: 20%;
}

.grade .c-score .score.score15 {
    width: 30%;
}

.grade .c-score .score.score2 {
    width: 40%;
}

.grade .c-score .score.score25 {
    width: 50%;
}

.grade .c-score .score.score3 {
    width: 60%;
}

.grade .c-score .score.score35 {
    width: 70%;
}

.grade .c-score .score.score4 {
    width: 80%;
}

.grade .c-score .score.score45 {
    width: 90%;
}

.grade .c-score .score.score5 {
    width: 100%;
}

.grade .scoreNum {
    margin-left: 2px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #909090;
}

.diChoice .btnRadio:not(:first-child) {
    margin-top: 20px;
}

.diChoice input:disabled > .text {
    font-weight: 500;
}

.tooltipInfo {
    margin-top: 8px;
    font-size: 14px;
    line-height: 24px;
    color: #909090;
}

.quickBox {
    width: 100%;
    padding: 28px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}

.quickBox::after {
    content: '';
    display: inline-block;
    height: 20px;
    width: 20px;
    vertical-align: middle;
    background: url("../img/godo2023/ico_agree_arr.svg") no-repeat center/16px 16px;
    transform: rotate(-90deg);
    text-indent: -999px;
    overflow: hidden;
}

.quickBox .date {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #000;
}

.quickBox .time {
    flex: 1;
    margin-right: 40px;
    text-align: right;
    color: #4130df;
}

.storeSearch {
    gap: 24px;
}

.storeSearch .btnSt, .storeSearch body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .storeSearch a, .storeSearch body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .storeSearch .cart-btn, .storeSearch body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .storeSearch .group-total-btn > a, .storeSearch body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .storeSearch .btn-primary, .storeSearch body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .storeSearch .btn-semi, .storeSearch body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .storeSearch .btn-outline-primary {
    flex: none;
    width: 160px;
}

.storeInfoBox {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 28px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.storeInfoBox .name {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}

.storeInfoBox .name .btnDetail {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 8px;
    background: url(../img/godo2023/ico_union.svg) no-repeat center/20px;
    text-indent: -9999px;
    overflow: hidden;
}

.storeInfoBox .address {
    margin-top: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #909090;
}

.storeInfoBox .contact {
    display: block;
    margin-top: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #000;
}

.storeInfoBox .contact:before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: -5px;
    background: url(../img/godo2023/ico_callcenter.svg) no-repeat center/cover;
}

.storeInfoBox .btnSt.secondary3, .storeInfoBox body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary3, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .storeInfoBox a.secondary3, .storeInfoBox body .wrap.godo2023 .my-cart-tbl .secondary3.cart-btn, body .wrap.godo2023 .my-cart-tbl .storeInfoBox .secondary3.cart-btn, .storeInfoBox body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary3, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .storeInfoBox .group-total-btn > a.secondary3, .storeInfoBox body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > a.btn-semi, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .storeInfoBox .group-total-btn > a.btn-semi, .storeInfoBox body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.btn-semi, body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .storeInfoBox .group-total-btn > a.btn-semi, .storeInfoBox body .wrap.godo2023 .modal .secondary3.btn-primary, body .wrap.godo2023 .modal .storeInfoBox .secondary3.btn-primary, .storeInfoBox body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .storeInfoBox .btn-semi, .storeInfoBox body .wrap.godo2023 .modal .secondary3.btn-outline-primary, body .wrap.godo2023 .modal .storeInfoBox .secondary3.btn-outline-primary {
    min-width: 120px;
}

.visitSelect,
.visitInfo {
    gap: 24px;
    margin-top: 40px;
}

.visitSelect .formItemRow,
.visitInfo .formItemRow {
    margin-top: 0;
    width: 100%;
}

.logoImg {
    margin: 0 auto;
    width: 359px;
}

.sessionTime {
    display: none;
    font-weight: 400;
    font-size: 16px;
}

.sessionTime + .btnSt.secondary3, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .sessionTime + a.secondary3, body .wrap.godo2023 .modal .cart-empty-wrap .btns-wrap .sessionTime + a.btn-semi, body .wrap.godo2023 .my-cart-tbl .sessionTime + .secondary3.cart-btn, body .wrap.godo2023 .modal .my-cart-tbl .sessionTime + .cart-btn.btn-semi,
body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .sessionTime + .secondary3.cart-btn, body .wrap.godo2023 .modal .my-cart-tbl .all-btns-wrap .sessionTime + .cart-btn.btn-semi, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > .sessionTime + a.secondary3, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .modal .group-total-btn > .sessionTime + a.btn-semi, body .wrap.godo2023 .modal .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > .sessionTime + a.btn-semi, body .wrap.godo2023 .modal .sessionTime + .secondary3.btn-primary, body .wrap.godo2023 .modal .sessionTime + .btn-semi, body .wrap.godo2023 .modal .sessionTime + .secondary3.btn-outline-primary {
    display: none;
}

.dateSelect {
    display: flex;
    gap: 40px;
}

.dateSelect .formItemRow {
    flex: 1 1 100%;
}

.dateSelect .formItemRow .inputItem, .dateSelect .formItemRow .inputItemNline {
    position: relative;
}

.fdNotice {
    min-height: 270px;
    display: flex;
    align-items: flex-end;
}

.fdNotice .noticeList, .fdNotice .noticeWrap {
    width: 100%;
}

.fdNotice .noticeList .bulletList .bulletItem:last-child, .fdNotice .noticeWrap .bulletList .bulletItem:last-child, .fdNotice .noticeList .notiCon ul .bulletItem:last-child, .notiCon .fdNotice .noticeList ul .bulletItem:last-child, .fdNotice .noticeWrap .notiCon ul .bulletItem:last-child, .notiCon .fdNotice .noticeWrap ul .bulletItem:last-child, .fdNotice .noticeList .acc-menu-cnt .txList03 .bulletItem:last-child, .acc-menu-cnt .fdNotice .noticeList .txList03 .bulletItem:last-child, .fdNotice .noticeWrap .acc-menu-cnt .txList03 .bulletItem:last-child, .acc-menu-cnt .fdNotice .noticeWrap .txList03 .bulletItem:last-child, .fdNotice .noticeList .acc-menu-cnt .txList05 .bulletItem:last-child, .acc-menu-cnt .fdNotice .noticeList .txList05 .bulletItem:last-child, .fdNotice .noticeWrap .acc-menu-cnt .txList05 .bulletItem:last-child, .acc-menu-cnt .fdNotice .noticeWrap .txList05 .bulletItem:last-child, .fdNotice .noticeList .bulletList .modalTable .tableBulletItem:last-child, .modalTable .fdNotice .noticeList .bulletList .tableBulletItem:last-child, .fdNotice .noticeWrap .bulletList .modalTable .tableBulletItem:last-child, .modalTable .fdNotice .noticeWrap .bulletList .tableBulletItem:last-child, .fdNotice .noticeList .notiCon ul .modalTable .tableBulletItem:last-child, .modalTable .fdNotice .noticeList .notiCon ul .tableBulletItem:last-child, .notiCon .fdNotice .noticeList ul .modalTable .tableBulletItem:last-child, .modalTable .notiCon .fdNotice .noticeList ul .tableBulletItem:last-child, .fdNotice .noticeWrap .notiCon ul .modalTable .tableBulletItem:last-child, .modalTable .fdNotice .noticeWrap .notiCon ul .tableBulletItem:last-child, .notiCon .fdNotice .noticeWrap ul .modalTable .tableBulletItem:last-child, .modalTable .notiCon .fdNotice .noticeWrap ul .tableBulletItem:last-child, .fdNotice .noticeList .acc-menu-cnt .txList03 .modalTable .tableBulletItem:last-child, .modalTable .fdNotice .noticeList .acc-menu-cnt .txList03 .tableBulletItem:last-child, .acc-menu-cnt .fdNotice .noticeList .txList03 .modalTable .tableBulletItem:last-child, .modalTable .acc-menu-cnt .fdNotice .noticeList .txList03 .tableBulletItem:last-child, .fdNotice .noticeWrap .acc-menu-cnt .txList03 .modalTable .tableBulletItem:last-child, .modalTable .fdNotice .noticeWrap .acc-menu-cnt .txList03 .tableBulletItem:last-child, .acc-menu-cnt .fdNotice .noticeWrap .txList03 .modalTable .tableBulletItem:last-child, .modalTable .acc-menu-cnt .fdNotice .noticeWrap .txList03 .tableBulletItem:last-child, .fdNotice .noticeList .acc-menu-cnt .txList05 .modalTable .tableBulletItem:last-child, .modalTable .fdNotice .noticeList .acc-menu-cnt .txList05 .tableBulletItem:last-child, .acc-menu-cnt .fdNotice .noticeList .txList05 .modalTable .tableBulletItem:last-child, .modalTable .acc-menu-cnt .fdNotice .noticeList .txList05 .tableBulletItem:last-child, .fdNotice .noticeWrap .acc-menu-cnt .txList05 .modalTable .tableBulletItem:last-child, .modalTable .fdNotice .noticeWrap .acc-menu-cnt .txList05 .tableBulletItem:last-child, .acc-menu-cnt .fdNotice .noticeWrap .txList05 .modalTable .tableBulletItem:last-child, .modalTable .acc-menu-cnt .fdNotice .noticeWrap .txList05 .tableBulletItem:last-child, .fdNotice .noticeList .bulletList .notiCon ul li:last-child, .notiCon ul .fdNotice .noticeList .bulletList li:last-child, .fdNotice .noticeWrap .bulletList .notiCon ul li:last-child, .notiCon ul .fdNotice .noticeWrap .bulletList li:last-child, .fdNotice .noticeList .notiCon ul li:last-child, .notiCon .fdNotice .noticeList ul li:last-child, .fdNotice .noticeWrap .notiCon ul li:last-child, .notiCon .fdNotice .noticeWrap ul li:last-child, .acc-menu-cnt .txList03 .fdNotice .noticeList .bulletList li:last-child, .acc-menu-cnt .txList03 .fdNotice .noticeWrap .bulletList li:last-child, .acc-menu-cnt .txList03 .fdNotice .noticeList .notiCon ul li:last-child, .acc-menu-cnt .txList03 .notiCon .fdNotice .noticeList ul li:last-child, .acc-menu-cnt .txList03 .fdNotice .noticeWrap .notiCon ul li:last-child, .acc-menu-cnt .txList03 .notiCon .fdNotice .noticeWrap ul li:last-child, .fdNotice .noticeList .acc-menu-cnt .txList03 li:last-child, .acc-menu-cnt .fdNotice .noticeList .txList03 li:last-child, .fdNotice .noticeWrap .acc-menu-cnt .txList03 li:last-child, .acc-menu-cnt .fdNotice .noticeWrap .txList03 li:last-child, .acc-menu-cnt .txList05 .fdNotice .noticeList .bulletList li:last-child, .acc-menu-cnt .txList05 .fdNotice .noticeWrap .bulletList li:last-child, .acc-menu-cnt .txList05 .fdNotice .noticeList .notiCon ul li:last-child, .acc-menu-cnt .txList05 .notiCon .fdNotice .noticeList ul li:last-child, .acc-menu-cnt .txList05 .fdNotice .noticeWrap .notiCon ul li:last-child, .acc-menu-cnt .txList05 .notiCon .fdNotice .noticeWrap ul li:last-child,
.fdNotice .noticeList .acc-menu-cnt .txList05 li:last-child, .acc-menu-cnt .fdNotice .noticeList .txList05 li:last-child,
.fdNotice .noticeWrap .acc-menu-cnt .txList05 li:last-child, .acc-menu-cnt .fdNotice .noticeWrap .txList05 li:last-child {
    margin-bottom: 0;
}

.payChoice {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
}

.payChoice .btnRadio + .btnRadio {
    margin-top: 12px;
}

.payChoice .skPayAgree + .btnRadio {
    margin-top: 40px;
}

.payChoice .skPayAgree.open [data-acd-btn] {
    background: url(../img/godo2023/ico_accordian_arrow_on.svg) no-repeat right center;
}

.payChoice .skPayAgree .btnOpen {
    width: 20px;
    height: 20px;
    background: url(../img/godo2023/ico_accordian_arrow.svg) no-repeat right center;
    transform: rotate(0);
}

.payTotalBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding: 28px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 28px;
    background: #f7f7f7;
}

.payTotalBox .tit {
    font-weight: 700;
}

.payTotalBox .tit::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: top;
    background: url(../img/godo2023/ico_money.svg) no-repeat center/cover;
}

.payTotalBox .price {
    color: #ff4d4d;
}

.payTotalBox .price span {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
}

.map {
    position: relative;
    width: calc(100% - 304px);
    height: inherit;
    overflow: hidden;
    border-radius: 6px;
    background: #f7f7f7;
}

.map .pin {
    width: 42px;
    height: 54px;
    background: url(../img/godo2023/ico_shop_pin.svg) no-repeat center/contain;
}

.map .pin.none {
    width: 26px;
    height: 33px;
    background: url(../img/godo2023/ico_shop_pin_none.svg) no-repeat center/contain;
}

.map .pick {
    display: inline-block;
    position: relative;
}

.map .pick .bubble {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 8px;
    border: 1px solid #4130df;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(65, 48, 223, 0.18);
    background: #fff;
    /*  &:after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: calc(50% - 4px);
        height: 9px;
        width: 9px;
        border: solid #4130df;
        border-width: 1px 0 0 1px;
        transition: border-color 200ms ease-in-out 0s;
        transform: rotate(-136deg);
        background: #fff;
      }*/
}

.map .pick .bubble:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    width: 16px;
    height: 9px;
    background: url(../img/godo2023/ico_bubble_pick.svg) no-repeat 50% 0;
}

.map .pick .bubble span {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #4130df;
    white-space: nowrap;
}

.map .noMap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.map .noMap p {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}

.searchInfo {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
}

.storeWrap {
    display: flex;
    gap: 9px;
    height: 562px;
    margin-top: 20px;
}

.storeGroup {
    width: 295px;
    height: inherit;
    overflow-y: auto;
}

.storeList {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-right: 15px;
}

.storeList .storeBtnRow {
    position: relative;
}

.storeList .storeBtnRow .more {
    z-index: 2;
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/godo2023/ico_union.svg) no-repeat center/100%;
    text-indent: -999px;
    overflow: hidden;
}

.storeList .storeBtnRow > .btnRadio {
    justify-content: flex-start;
}

.storeList .btnRadio {
    padding: 20px;
    line-height: inherit;
}

.storeList .btnRadio:has(:checked) {
    color: #000;
}

.storeList .storeItem {
    text-align: left;
}

.storeList .storeItem .tag + .name {
    margin-top: 4px;
}

.storeList .storeItem .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
}

.storeList .storeItem .grade .scoreNum {
    font-size: 14px;
    line-height: 24px;
}

.storeList .storeItem .address {
    margin-top: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #909090;
}

.storeList .storeItem .contact {
    display: block;
    margin-top: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #000;
}

.storeList .storeItem .contact::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 4px;
    vertical-align: -4px;
    background: url(../img/godo2023/ico_callcenter.svg) no-repeat center/cover;
}

.storeList .storeItem .btnMore {
    position: absolute;
    top: 12px;
    right: 12px;
}

.storeTitBox {
    padding: 28px;
    border-radius: 8px;
    background: #f7f7f7;
}

.storeTitBox .tit {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: #000;
}

.storeTitBox .grade .scoreNum {
    font-size: 14px;
    line-height: 24px;
}

.storeInfo .infoList {
    padding: 28px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.storeInfo .infoList li {
    display: flex;
    justify-content: space-between;
}

.storeInfo .infoList li::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.storeInfo .infoList li.addr::before {
    background: url(../img/godo2023/ico_home.svg) no-repeat center/cover;
}

.storeInfo .infoList li.contact::before {
    background: url(../img/godo2023/ico_callcenter.svg) no-repeat center/cover;
}

.storeInfo .infoList li.time::before {
    background: url(../img/godo2023/ico_clock.svg) no-repeat center/cover;
}

.storeInfo .infoList li.location::before {
    background: url(../img/godo2023/ico_pin.svg) no-repeat center/cover;
}

.storeInfo .infoList li + li {
    margin-top: 20px;
}

.storeInfo .infoList li span {
    width: 160px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}

.storeInfo .infoList li p,
.storeInfo .infoList li a {
    flex: 1;
    text-align: right;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #666;
}

.storeInfo .map {
    width: 100%;
    height: 406px;
}

.storeInfo > .selectItem.sm, .storeInfo > .sm.selectCheckItem {
    margin-bottom: 12px;
}

.storeInfo .reviewList {
    padding-top: 20px;
    border-top: 1px solid #efefef;
}

.storeInfo .reviewList li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.storeInfo .reviewList li + li {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #efefef;
}

.storeInfo .reviewList li.on .review p {
    -webkit-box-orient: initial;
}

.storeInfo .reviewList li.on .btnOpen:after {
    transform: rotate(270deg);
}

.storeInfo .reviewList li .grade {
    margin-left: 0;
}

.storeInfo .reviewList li .grade .scoreNum {
    margin-left: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #000;
}

.storeInfo .reviewList li .info {
    display: flex;
}

.storeInfo .reviewList li .info span {
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

.storeInfo .reviewList li .info span + span::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 11px;
    margin: 0 12px;
    background: #bfbfbf;
}

.storeInfo .reviewList li .review {
    width: 100%;
    margin-top: 12px;
    min-height: 26px;
}

.storeInfo .reviewList li .review.abstracted {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: height 0.2s;
    height: 52px;
}

.storeInfo .reviewList li .review p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #909090;
}

.storeInfo .reviewList li .btnOpen {
    margin: 24px 0 0 auto;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #444;
}

.storeInfo .reviewList li .btnOpen::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    vertical-align: -4px;
    background: url("../img/godo2023/ico_link_arr_gray.svg") no-repeat center/100%;
    transform: rotate(90deg);
}

.storeInfo .reviewList li .btnOpen.on::after {
    transform: rotate(-90deg);
}

.btnAdd, .btnPhotoAdd {
    display: block;
    margin: 0 auto;
    padding: 11px 26px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #444;
}

.btnAdd::after, .btnPhotoAdd::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    vertical-align: -2px;
    background: url(../img/godo2023/ico_plus_b.svg) no-repeat center/100%;
}

.btnAdd.fiveMore, .fiveMore.btnPhotoAdd {
    padding: 11px 12px;
}

.btnPhotoAdd {
    margin: 0 auto 40px;
}

.subList li {
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
    color: #909090;
}

.subList li + li {
    margin-top: 4px;
}

.filterGroup {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    margin-top: 24px;
    padding: 0;
    border: none;
}

.filterGroup .formRadio,
.filterGroup .formCheckbox {
    flex: calc(50% - 40px);
}

.filterGroup .formRadio .text,
.filterGroup .formCheckbox .text {
    color: #909090;
}

.filterGroup .formRadio.checked .text,
.filterGroup .formCheckbox.checked .text {
    color: #000;
}

.photoWrap {
    height: 484px;
    padding: 20px 40px 4px !important;
}

.photoWrap .photoList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.photoWrap .photoItem {
    width: calc((100% - 80px) / 5);
    height: 148px;
}

.photoWrap .photoItem .num {
    right: 11px;
    bottom: 8px;
}

.photoWrap .photoItem.video::after {
    width: 72px;
    height: 72px;
    background-size: cover;
}

.shareItem {
    position: relative;
}

.shareItem .del {
    position: absolute;
    top: 26px;
    right: 0;
    display: none;
    width: 20px;
    height: 20px;
    background: url(../img/godo2023/ico_x.svg) no-repeat center/20px 20px;
    text-indent: -9999px;
    overflow: hidden;
}

.btnDel {
    display: none;
}

.optionGoods {
    display: flex;
    gap: 20px;
}

.optionGoods .img {
    width: 160px;
    height: 160px;
}

.optionGoods .optionInfo {
    width: calc(100% - 180px);
}

.optionGoods .optionInfo .marker {
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

.optionGoods .optionInfo .name {
    display: block;
    margin-top: 4px;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: #000;
}

.optionGoods .optionInfo .selectArea {
    margin-top: 20px;
}

.optionGoods .optionInfo .selectArea .selectInfo {
    display: flex;
    gap: 12px;
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.optionGoods .optionInfo .selectArea .selectInfo span {
    font-weight: 700;
    color: #000;
}

.optionGoods .optionInfo .selectArea .selectItem, .optionGoods .optionInfo .selectArea .selectCheckItem {
    width: 100%;
    margin-top: 20px;
}

.optionList .optionItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.optionList .optionItem + .optionItem {
    margin-top: 12px;
}

.optionList .optionItem .name {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 183px;
    max-height: 52px;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
}

.optionList .optionItem .price {
    flex: 1 1 auto;
    font-size: 16px;
    line-height: 26px;
    text-align: right;
    color: #ff4d4d;
}

.optionList .optionItem .price span {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
}

.optionList .optionItem .btnDel {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../img/godo2023/option_close.svg") no-repeat center/cover;
}

.countBox {
    display: flex;
    align-items: center;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
}

.countBox .btn {
    width: 32px;
    height: 32px;
}

.countBox .btn.minus {
    border-right: 1px solid #e1e1e1;
    background: url(../img/godo2023/ico_minus.svg) no-repeat center/12px;
}

.countBox .btn.plus {
    border-left: 1px solid #e1e1e1;
    background: url(../img/godo2023/ico_plus_sm.svg) no-repeat center/16px;
}

.countBox .num {
    min-width: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
}

.agreePopDtl .modalContent {
    font-size: 16px;
    line-height: 26px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem, .agreePopDtl .notiCon .modalContent > ul > .bulletItem, .notiCon .agreePopDtl .modalContent > ul > .bulletItem, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem, .agreePopDtl .notiCon ul .modalContent > .bulletList > li, .notiCon ul .agreePopDtl .modalContent > .bulletList > li, .agreePopDtl .notiCon .modalContent > ul > li, .notiCon .agreePopDtl .modalContent > ul > li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li,
.agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li,
.agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li,
.agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li,
.agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li {
    padding-left: 0;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li strong.adminDepOne, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li strong.adminDepOne, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li strong.adminDepOne, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li strong.adminDepOne, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li strong.adminDepOne, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li strong.adminDepOne, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li strong.adminDepOne, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li strong.adminDepOne, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li strong.adminDepOne, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li strong.adminDepOne, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li strong.adminDepOne, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li strong.adminDepOne, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li strong.adminDepOne, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li strong.adminDepOne, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li strong.adminDepOne, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li strong.adminDepOne, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li strong.adminDepOne, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li strong.adminDepOne, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li strong.adminDepOne, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li strong.adminDepOne, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li strong.adminDepOne, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li strong.adminDepOne, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li strong.adminDepOne, .agreePopDtl .notiCon .modalContent > ul > li > ol li strong.adminDepOne, .notiCon .agreePopDtl .modalContent > ul > li > ol li strong.adminDepOne, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li strong.adminDepOne, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li strong.adminDepOne, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li strong.adminDepOne, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li strong.adminDepOne, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li strong.adminDepOne, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li strong.adminDepOne, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li strong.adminDepOne, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li strong.adminDepOne, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li strong.adminDepOne, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li strong.adminDepOne, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li strong.adminDepOne, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li strong.adminDepOne, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li strong.adminDepOne, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li strong.adminDepOne, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li strong.adminDepOne, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li strong.adminDepOne, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li strong.adminDepOne, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li strong.adminDepOne, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li strong.adminDepOne, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li strong.adminDepOne, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li strong.adminDepOne, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li strong.adminDepOne, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li strong.adminDepOne, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li strong.adminDepOne {
    display: block;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li strong.adminDepTwo, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li strong.adminDepTwo, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li strong.adminDepTwo, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li strong.adminDepTwo, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li strong.adminDepTwo, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li strong.adminDepTwo, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li strong.adminDepTwo, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li strong.adminDepTwo, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li strong.adminDepTwo, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li strong.adminDepTwo, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li strong.adminDepTwo, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li strong.adminDepTwo, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li strong.adminDepTwo, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li strong.adminDepTwo, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li strong.adminDepTwo, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li strong.adminDepTwo, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li strong.adminDepTwo, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li strong.adminDepTwo, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li strong.adminDepTwo, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li strong.adminDepTwo, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li strong.adminDepTwo, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li strong.adminDepTwo, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li strong.adminDepTwo, .agreePopDtl .notiCon .modalContent > ul > li > ol li strong.adminDepTwo, .notiCon .agreePopDtl .modalContent > ul > li > ol li strong.adminDepTwo, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li strong.adminDepTwo, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li strong.adminDepTwo, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li strong.adminDepTwo, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li strong.adminDepTwo, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li strong.adminDepTwo, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li strong.adminDepTwo, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li strong.adminDepTwo, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li strong.adminDepTwo, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li strong.adminDepTwo, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li strong.adminDepTwo, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li strong.adminDepTwo, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li strong.adminDepTwo, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li strong.adminDepTwo, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li strong.adminDepTwo, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li strong.adminDepTwo, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li strong.adminDepTwo, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li strong.adminDepTwo, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li strong.adminDepTwo, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li strong.adminDepTwo, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li strong.adminDepTwo, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li strong.adminDepTwo, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li strong.adminDepTwo, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li strong.adminDepTwo, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li strong.adminDepTwo {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #000;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li strong.adminDepThree, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li strong.adminDepThree, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li strong.adminDepThree, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li strong.adminDepThree, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li strong.adminDepThree, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li strong.adminDepThree, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li strong.adminDepThree, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li strong.adminDepThree, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li strong.adminDepThree, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li strong.adminDepThree, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li strong.adminDepThree, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li strong.adminDepThree, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li strong.adminDepThree, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li strong.adminDepThree, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li strong.adminDepThree, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li strong.adminDepThree, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li strong.adminDepThree, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li strong.adminDepThree, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li strong.adminDepThree, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li strong.adminDepThree, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li strong.adminDepThree, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li strong.adminDepThree, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li strong.adminDepThree, .agreePopDtl .notiCon .modalContent > ul > li > ol li strong.adminDepThree, .notiCon .agreePopDtl .modalContent > ul > li > ol li strong.adminDepThree, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li strong.adminDepThree, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li strong.adminDepThree, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li strong.adminDepThree, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li strong.adminDepThree, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li strong.adminDepThree, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li strong.adminDepThree, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li strong.adminDepThree, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li strong.adminDepThree, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li strong.adminDepThree, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li strong.adminDepThree, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li strong.adminDepThree, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li strong.adminDepThree, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li strong.adminDepThree, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li strong.adminDepThree, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li strong.adminDepThree, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li strong.adminDepThree, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li strong.adminDepThree, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li strong.adminDepThree, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li strong.adminDepThree, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li strong.adminDepThree, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li strong.adminDepThree, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li strong.adminDepThree, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li strong.adminDepThree, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li strong.adminDepThree {
    display: block;
    margin-top: 8px;
    margin-bottom: 8px;
    color: #000;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li p, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li p, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li p, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li p, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li p, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li p, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li p, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li p, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li p, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li p, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li p, .agreePopDtl .notiCon .modalContent > ul > li > ol li p, .notiCon .agreePopDtl .modalContent > ul > li > ol li p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li p, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li p, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li p, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li p, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li p, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li p, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li p, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li p, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li p, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li p, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li p, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li p, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li p {
    font-size: 16px;
    line-height: 26px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li p + p, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li p + p, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li p + p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li p + p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li p + p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li p + p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li p + p, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li p + p, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li p + p, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li p + p, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li p + p, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li p + p, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li p + p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li p + p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li p + p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li p + p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li p + p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li p + p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li p + p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li p + p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li p + p, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li p + p, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li p + p, .agreePopDtl .notiCon .modalContent > ul > li > ol li p + p, .notiCon .agreePopDtl .modalContent > ul > li > ol li p + p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li p + p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li p + p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li p + p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li p + p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li p + p, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li p + p, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li p + p, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li p + p, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li p + p, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li p + p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li p + p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li p + p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li p + p, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li p + p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li p + p, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li p + p, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li p + p, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li p + p, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li p + p, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li p + p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li p + p, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li p + p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li p + p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li p + p {
    margin-top: 8px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li ul, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li ul, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li ul, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li ul, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li ul, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li ul, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li ul, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li ul, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li ul, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li ul, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li ul, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li ul, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li ul, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li ul, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li ul, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li ul, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li ul, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li ul, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li ul, .agreePopDtl .notiCon .modalContent > ul > li > ol li ul, .notiCon .agreePopDtl .modalContent > ul > li > ol li ul, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li ul, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li ul, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li ul, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li ul, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li ul, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li ul, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li ul, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li ul, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li ul, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li ul, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li ul, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li ul, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li ul, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li ul, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li ul, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li ul {
    margin-top: 8px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li ul li, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li ul li, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li ul li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li ul li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li ul li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li ul li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li ul li, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li ul li, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li ul li, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li ul li, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li ul li, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li ul li, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li ul li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li ul li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li ul li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li ul li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li ul li, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li ul li, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li ul li, .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li, .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li ul li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li ul li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li ul li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li ul li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li ul li, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li ul li, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul li, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul li, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li ul li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li ul li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li ul li, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li ul li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li ul li, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li ul li, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul li, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul li, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li ul li, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li ul li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li ul li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li ul li {
    position: relative;
    padding-left: 11px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li ul li li, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li ul li li, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li ul li li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li ul li li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li ul li li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li ul li li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li ul li li, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li ul li li, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li ul li li, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li ul li li, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li ul li li, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li ul li li, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li ul li li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul li li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li ul li li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul li li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li ul li li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul li li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li ul li li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul li li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li ul li li, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li ul li li, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li ul li li, .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li li, .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li ul li li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li ul li li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li ul li li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li ul li li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li ul li li, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li ul li li, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul li li, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li li, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul li li, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li ul li li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li ul li li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li ul li li, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li ul li li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li ul li li, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li ul li li, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul li li, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li li, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul li li, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li ul li li, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li ul li li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li ul li li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li ul li li {
    position: relative;
    padding-left: 11px;
    color: #909090;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li ul li li:before, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li ul li li:before, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li ul li li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li ul li li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li ul li li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li ul li li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li ul li li:before, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li ul li li:before, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li ul li li:before, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li ul li li:before, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li ul li li:before, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li ul li li:before, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li ul li li:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul li li:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li ul li li:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul li li:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li ul li li:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul li li:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li ul li li:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul li li:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li ul li li:before, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li ul li li:before, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li ul li li:before, .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li li:before, .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li li:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li ul li li:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li ul li li:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li ul li li:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li ul li li:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li ul li li:before, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li ul li li:before, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul li li:before, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li li:before, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul li li:before, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li ul li li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li ul li li:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li ul li li:before, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li ul li li:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li ul li li:before, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li ul li li:before, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul li li:before, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li li:before, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul li li:before, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li li:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li ul li li:before, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li ul li li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li ul li li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li ul li li:before {
    position: absolute;
    top: 12px;
    left: 0;
    content: '';
    display: block;
    width: 5px;
    height: 2px;
    border-radius: 100%;
    background: #bfbfbf;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li ul li li + li, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li ul li li + li, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li ul li li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li ul li li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li ul li li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li ul li li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li ul li li + li, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li ul li li + li, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li ul li li + li, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li ul li li + li, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li ul li li + li, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li ul li li + li, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li ul li li + li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul li li + li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li ul li li + li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul li li + li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li ul li li + li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul li li + li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li ul li li + li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul li li + li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li ul li li + li, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li ul li li + li, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li ul li li + li, .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li li + li, .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li li + li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li ul li li + li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li ul li li + li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li ul li li + li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li ul li li + li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li ul li li + li, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li ul li li + li, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul li li + li, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li li + li, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul li li + li, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li ul li li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li ul li li + li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li ul li li + li, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li ul li li + li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li ul li li + li, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li ul li li + li, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul li li + li, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li li + li, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul li li + li, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li li + li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li ul li li + li, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li ul li li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li ul li li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li ul li li + li {
    margin-top: 8px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li ul li:before, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li ul li:before, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li ul li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li ul li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li ul li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li ul li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li ul li:before, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li ul li:before, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li ul li:before, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li ul li:before, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li ul li:before, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li ul li:before, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li ul li:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul li:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li ul li:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul li:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li ul li:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul li:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li ul li:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul li:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li ul li:before, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li ul li:before, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li ul li:before, .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li:before, .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li ul li:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li ul li:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li ul li:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li ul li:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li ul li:before, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li ul li:before, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul li:before, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li:before, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul li:before, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li ul li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li ul li:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li ul li:before, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li ul li:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li ul li:before, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li ul li:before, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul li:before, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li:before, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul li:before, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li ul li:before, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li ul li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li ul li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li ul li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #bfbfbf;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li ul li + li, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li ul li + li, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li ul li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li ul li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li ul li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li ul li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li ul li + li, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li ul li + li, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li ul li + li, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li ul li + li, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li ul li + li, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li ul li + li, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li ul li + li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul li + li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li ul li + li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li ul li + li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li ul li + li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul li + li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li ul li + li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li ul li + li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li ul li + li, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li ul li + li, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li ul li + li, .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li + li, .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li + li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li ul li + li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li ul li + li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li ul li + li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li ul li + li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li ul li + li, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li ul li + li, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul li + li, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li + li, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li ul li + li, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li ul li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li ul li + li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li ul li + li, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li ul li + li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li ul li + li, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li ul li + li, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul li + li, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li ul li + li, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li ul li + li, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li ul li + li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li ul li + li, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li ul li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li ul li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li ul li + li {
    margin-top: 8px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li .table-term, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li .table-term, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li .table-term, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li .table-term, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li .table-term, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li .table-term, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li .table-term, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li .table-term, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li .table-term, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li .table-term, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li .table-term, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li .table-term, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li .table-term, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li .table-term, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li .table-term, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li .table-term, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li .table-term, .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term, .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li .table-term, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li .table-term, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li .table-term, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li .table-term, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li .table-term, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li .table-term, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li .table-term, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li .table-term, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li .table-term, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li .table-term, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li .table-term, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li .table-term, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li .table-term, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li .table-term {
    margin: 8px 0;
    text-align: center;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li .table-term thead tr th, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li .table-term thead tr th, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li .table-term thead tr th, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li .table-term thead tr th, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li .table-term thead tr th, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li .table-term thead tr th, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li .table-term thead tr th, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li .table-term thead tr th, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li .table-term thead tr th, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term thead tr th, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li .table-term thead tr th, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term thead tr th, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li .table-term thead tr th, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr th, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr th, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr th, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr th, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr th, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr th, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr th, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr th, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li .table-term thead tr th, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr th, .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr th, .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr th, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li .table-term thead tr th, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li .table-term thead tr th, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li .table-term thead tr th, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li .table-term thead tr th, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li .table-term thead tr th, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr th, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term thead tr th, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr th, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term thead tr th, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr th, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li .table-term thead tr th, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li .table-term thead tr th, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li .table-term thead tr th, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li .table-term thead tr th, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li .table-term thead tr th, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr th, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term thead tr th, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr th, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term thead tr th, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr th, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li .table-term thead tr th, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li .table-term thead tr th, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li .table-term thead tr th, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li .table-term thead tr th,
.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li .table-term thead tr td,
.agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li .table-term thead tr td,
.notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li .table-term thead tr td,
.agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li .table-term thead tr td,
.acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li .table-term thead tr td,
.agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li .table-term thead tr td,
.acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li .table-term thead tr td,
.agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li .table-term thead tr td,
.modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li .table-term thead tr td,
.agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term thead tr td,
.modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li .table-term thead tr td,
.notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term thead tr td,
.modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li .table-term thead tr td,
.agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr td,
.modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr td,
.acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr td,
.modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr td,
.agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr td,
.modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr td,
.acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr td,
.modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr td,
.agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li .table-term thead tr td,
.notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr td,
.agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr td,
.notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr td,
.agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li .table-term thead tr td,
.acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li .table-term thead tr td,
.agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li .table-term thead tr td,
.acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li .table-term thead tr td,
.agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li .table-term thead tr td,
.acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr td,
.agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term thead tr td,
.acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr td,
.notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term thead tr td,
.acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr td,
.agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li .table-term thead tr td,
.acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li .table-term thead tr td,
.agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li .table-term thead tr td,
.acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li .table-term thead tr td,
.agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li .table-term thead tr td,
.acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr td,
.agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term thead tr td,
.acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr td,
.notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term thead tr td,
.acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr td,
.agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li .table-term thead tr td,
.acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li .table-term thead tr td,
.agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li .table-term thead tr td,
.acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li .table-term thead tr td {
    padding: 12px 8px;
    border: 1px solid #e1e1e1 !important;
    background-color: #f7f7f7 !important;
    border-left: none !important;
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 13px;
    line-height: 23px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li .table-term thead tr th:last-child, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li .table-term thead tr th:last-child, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li .table-term thead tr th:last-child, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li .table-term thead tr th:last-child, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li .table-term thead tr th:last-child, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li .table-term thead tr th:last-child, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li .table-term thead tr th:last-child, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li .table-term thead tr th:last-child, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li .table-term thead tr th:last-child, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term thead tr th:last-child, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li .table-term thead tr th:last-child, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term thead tr th:last-child, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li .table-term thead tr th:last-child, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr th:last-child, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr th:last-child, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr th:last-child, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr th:last-child, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr th:last-child, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr th:last-child, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr th:last-child, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr th:last-child, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li .table-term thead tr th:last-child, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr th:last-child, .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr th:last-child, .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr th:last-child, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li .table-term thead tr th:last-child, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li .table-term thead tr th:last-child, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li .table-term thead tr th:last-child, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li .table-term thead tr th:last-child, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li .table-term thead tr th:last-child, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr th:last-child, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term thead tr th:last-child, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr th:last-child, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term thead tr th:last-child, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr th:last-child, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li .table-term thead tr th:last-child, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li .table-term thead tr th:last-child, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li .table-term thead tr th:last-child, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li .table-term thead tr th:last-child, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li .table-term thead tr th:last-child, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr th:last-child, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term thead tr th:last-child, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr th:last-child, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term thead tr th:last-child, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr th:last-child, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li .table-term thead tr th:last-child, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li .table-term thead tr th:last-child, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li .table-term thead tr th:last-child, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li .table-term thead tr th:last-child,
.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li .table-term thead tr td:last-child,
.agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li .table-term thead tr td:last-child,
.notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li .table-term thead tr td:last-child,
.agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li .table-term thead tr td:last-child,
.agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li .table-term thead tr td:last-child,
.agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li .table-term thead tr td:last-child,
.modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li .table-term thead tr td:last-child,
.agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term thead tr td:last-child,
.modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li .table-term thead tr td:last-child,
.notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term thead tr td:last-child,
.modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li .table-term thead tr td:last-child,
.agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr td:last-child,
.modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr td:last-child,
.modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr td:last-child,
.agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr td:last-child,
.modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr td:last-child,
.modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr td:last-child,
.agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li .table-term thead tr td:last-child,
.notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr td:last-child,
.agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr td:last-child,
.notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr td:last-child,
.agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li .table-term thead tr td:last-child,
.agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li .table-term thead tr td:last-child,
.agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr td:last-child,
.agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr td:last-child,
.notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr td:last-child,
.agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li .table-term thead tr td:last-child,
.agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li .table-term thead tr td:last-child,
.agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr td:last-child,
.agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr td:last-child,
.notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr td:last-child,
.agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li .table-term thead tr td:last-child,
.agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li .table-term thead tr td:last-child,
.acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li .table-term thead tr td:last-child {
    border-right: none !important;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li .table-term thead tr th > p > strong, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li .table-term thead tr th > p > strong, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li .table-term thead tr th > p > strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li .table-term thead tr th > p > strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li .table-term thead tr th > p > strong, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li .table-term thead tr th > p > strong, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li .table-term thead tr th > p > strong, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term thead tr th > p > strong, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li .table-term thead tr th > p > strong, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term thead tr th > p > strong, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li .table-term thead tr th > p > strong, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr th > p > strong, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr th > p > strong, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr th > p > strong, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr th > p > strong, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr th > p > strong, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr th > p > strong, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li .table-term thead tr th > p > strong, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr th > p > strong, .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr th > p > strong, .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr th > p > strong, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li .table-term thead tr th > p > strong, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li .table-term thead tr th > p > strong, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr th > p > strong, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr th > p > strong, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr th > p > strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li .table-term thead tr th > p > strong, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li .table-term thead tr th > p > strong, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr th > p > strong, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr th > p > strong, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr th > p > strong, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li .table-term thead tr th > p > strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li .table-term thead tr th > p > strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li .table-term thead tr th > p > strong,
.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li .table-term thead tr td > p > strong,
.agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li .table-term thead tr td > p > strong,
.notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li .table-term thead tr td > p > strong,
.agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li .table-term thead tr td > p > strong,
.agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li .table-term thead tr td > p > strong,
.agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li .table-term thead tr td > p > strong,
.agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li .table-term thead tr td > p > strong,
.notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr td > p > strong,
.agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr td > p > strong,
.notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr td > p > strong,
.agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li .table-term thead tr td > p > strong,
.agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li .table-term thead tr td > p > strong,
.agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr td > p > strong,
.agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr td > p > strong,
.notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr td > p > strong,
.agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li .table-term thead tr td > p > strong,
.agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li .table-term thead tr td > p > strong,
.agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term thead tr td > p > strong,
.agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term thead tr td > p > strong,
.notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term thead tr td > p > strong,
.agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li .table-term thead tr td > p > strong,
.agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li .table-term thead tr td > p > strong,
.acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li .table-term thead tr td > p > strong {
    color: #666 !important;
    font-weight: 400 !important;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li .table-term tbody tr th, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li .table-term tbody tr th, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li .table-term tbody tr th, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li .table-term tbody tr th, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li .table-term tbody tr th, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li .table-term tbody tr th, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li .table-term tbody tr th, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li .table-term tbody tr th, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li .table-term tbody tr th, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term tbody tr th, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li .table-term tbody tr th, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term tbody tr th, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li .table-term tbody tr th, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term tbody tr th, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li .table-term tbody tr th, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term tbody tr th, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li .table-term tbody tr th, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term tbody tr th, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li .table-term tbody tr th, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term tbody tr th, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li .table-term tbody tr th, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li .table-term tbody tr th, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li .table-term tbody tr th, .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term tbody tr th, .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term tbody tr th, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li .table-term tbody tr th, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li .table-term tbody tr th, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li .table-term tbody tr th, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li .table-term tbody tr th, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li .table-term tbody tr th, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term tbody tr th, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term tbody tr th, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term tbody tr th, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term tbody tr th, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term tbody tr th, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li .table-term tbody tr th, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li .table-term tbody tr th, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li .table-term tbody tr th, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li .table-term tbody tr th, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li .table-term tbody tr th, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term tbody tr th, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term tbody tr th, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term tbody tr th, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term tbody tr th, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term tbody tr th, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li .table-term tbody tr th, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li .table-term tbody tr th, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li .table-term tbody tr th, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li .table-term tbody tr th {
    border: 1px solid #e1e1e1 !important;
    background-color: #f7f7f7 !important;
    color: #666 !important;
    border-left: none !important;
    border-top: none !important;
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol li .table-term tbody tr td, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol li .table-term tbody tr td, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol li .table-term tbody tr td, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol li .table-term tbody tr td, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol li .table-term tbody tr td, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol li .table-term tbody tr td, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol li .table-term tbody tr td, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol li .table-term tbody tr td, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol li .table-term tbody tr td, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term tbody tr td, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol li .table-term tbody tr td, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol li .table-term tbody tr td, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol li .table-term tbody tr td, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term tbody tr td, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol li .table-term tbody tr td, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol li .table-term tbody tr td, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol li .table-term tbody tr td, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term tbody tr td, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol li .table-term tbody tr td, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol li .table-term tbody tr td, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol li .table-term tbody tr td, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol li .table-term tbody tr td, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol li .table-term tbody tr td, .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term tbody tr td, .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term tbody tr td, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol li .table-term tbody tr td, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol li .table-term tbody tr td, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol li .table-term tbody tr td, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol li .table-term tbody tr td, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol li .table-term tbody tr td, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term tbody tr td, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term tbody tr td, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term tbody tr td, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol li .table-term tbody tr td, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term tbody tr td, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol li .table-term tbody tr td, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol li .table-term tbody tr td, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol li .table-term tbody tr td, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol li .table-term tbody tr td, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol li .table-term tbody tr td, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol li .table-term tbody tr td, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term tbody tr td, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol li .table-term tbody tr td, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol li .table-term tbody tr td, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol li .table-term tbody tr td, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol li .table-term tbody tr td, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol li .table-term tbody tr td, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol li .table-term tbody tr td, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol li .table-term tbody tr td {
    padding: 12px;
    border: 1px solid #e1e1e1 !important;
    color: #909090 !important;
    border-right: none !important;
    border-top: none !important;
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > ol > li:first-child strong.adminDepOne:first-child, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > ol > li:first-child strong.adminDepOne:first-child, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .notiCon .modalContent > ul > li > ol > li:first-child strong.adminDepOne:first-child, .notiCon .agreePopDtl .modalContent > ul > li > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > ol > li:first-child strong.adminDepOne:first-child, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > ol > li:first-child strong.adminDepOne:first-child, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > ol > li:first-child strong.adminDepOne:first-child, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > ol > li:first-child strong.adminDepOne:first-child, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > ol > li:first-child strong.adminDepOne:first-child {
    margin-top: 0;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > p + h3, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > p + h3, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > p + h3, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > p + h3, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > p + h3, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > p + h3, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > p + h3, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > p + h3, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > p + h3, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > p + h3, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > p + h3, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > p + h3, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > p + h3, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > p + h3, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > p + h3, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > p + h3, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > p + h3, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > p + h3, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > p + h3, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > p + h3, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > p + h3, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > p + h3, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > p + h3, .agreePopDtl .notiCon .modalContent > ul > li > p + h3, .notiCon .agreePopDtl .modalContent > ul > li > p + h3, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > p + h3, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > p + h3, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > p + h3, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > p + h3, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > p + h3, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > p + h3, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > p + h3, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > p + h3, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > p + h3, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > p + h3, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > p + h3, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > p + h3, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > p + h3, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > p + h3, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > p + h3, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > p + h3, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > p + h3, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > p + h3, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > p + h3, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > p + h3, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > p + h3, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > p + h3, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > p + h3, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > p + h3 {
    margin-top: 20px;
    margin-bottom: 8px;
    color: #000;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem > p + p, .agreePopDtl .notiCon .modalContent > ul > .bulletItem > p + p, .notiCon .agreePopDtl .modalContent > ul > .bulletItem > p + p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem > p + p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem > p + p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem > p + p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem > p + p, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem > p + p, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem > p + p, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem > p + p, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem > p + p, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem > p + p, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem > p + p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem > p + p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem > p + p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem > p + p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem > p + p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem > p + p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem > p + p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem > p + p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem > p + p, .agreePopDtl .notiCon ul .modalContent > .bulletList > li > p + p, .notiCon ul .agreePopDtl .modalContent > .bulletList > li > p + p, .agreePopDtl .notiCon .modalContent > ul > li > p + p, .notiCon .agreePopDtl .modalContent > ul > li > p + p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li > p + p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li > p + p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li > p + p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li > p + p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li > p + p, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li > p + p, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li > p + p, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li > p + p, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li > p + p, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li > p + p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li > p + p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li > p + p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li > p + p, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li > p + p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li > p + p, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li > p + p, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li > p + p, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li > p + p, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li > p + p, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li > p + p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li > p + p, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li > p + p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li > p + p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li > p + p {
    margin-top: 8px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu p, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu p, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu p, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu p, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu p, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu p, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu p, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu p, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu p, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu p, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu p, .agreePopDtl .notiCon .modalContent > ul > li .negu p, .notiCon .agreePopDtl .modalContent > ul > li .negu p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu p, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu p, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu p, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu p, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu p, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu p, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu p, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu p, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu p, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu p, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu p, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu p, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu p {
    padding-left: 0;
    border-radius: 8px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu p:before, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu p:before, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu p:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu p:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu p:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu p:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu p:before, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu p:before, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu p:before, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu p:before, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu p:before, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu p:before, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu p:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu p:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu p:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu p:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu p:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu p:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu p:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu p:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu p:before, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu p:before, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu p:before, .agreePopDtl .notiCon .modalContent > ul > li .negu p:before, .notiCon .agreePopDtl .modalContent > ul > li .negu p:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu p:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu p:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu p:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu p:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu p:before, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu p:before, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu p:before, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu p:before, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu p:before, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu p:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu p:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu p:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu p:before, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu p:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu p:before, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu p:before, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu p:before, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu p:before, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu p:before, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu p:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu p:before, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu p:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu p:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu p:before {
    display: none;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu > p, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu > p, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu > p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu > p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu > p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu > p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu > p, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu > p, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu > p, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu > p, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu > p, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu > p, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu > p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu > p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu > p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu > p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu > p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu > p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu > p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu > p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu > p, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu > p, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu > p, .agreePopDtl .notiCon .modalContent > ul > li .negu > p, .notiCon .agreePopDtl .modalContent > ul > li .negu > p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu > p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu > p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu > p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu > p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu > p, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu > p, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu > p, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu > p, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu > p, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu > p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu > p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu > p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu > p, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu > p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu > p, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu > p, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu > p, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu > p, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu > p, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu > p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu > p, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu > p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu > p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu > p {
    padding: 28px;
    background: #f7f7f7;
    font-size: 16px;
    line-height: 26px;
    color: #909090;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu > p:first-child, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu > p:first-child, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu > p:first-child, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu > p:first-child, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu > p:first-child, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu > p:first-child, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu > p:first-child, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu > p:first-child, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu > p:first-child, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu > p:first-child, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu > p:first-child, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu > p:first-child, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu > p:first-child, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu > p:first-child, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu > p:first-child, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu > p:first-child, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu > p:first-child, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu > p:first-child, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu > p:first-child, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu > p:first-child, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu > p:first-child, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu > p:first-child, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu > p:first-child, .agreePopDtl .notiCon .modalContent > ul > li .negu > p:first-child, .notiCon .agreePopDtl .modalContent > ul > li .negu > p:first-child, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu > p:first-child, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu > p:first-child, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu > p:first-child, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu > p:first-child, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu > p:first-child, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu > p:first-child, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu > p:first-child, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu > p:first-child, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu > p:first-child, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu > p:first-child, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu > p:first-child, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu > p:first-child, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu > p:first-child, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu > p:first-child, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu > p:first-child, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu > p:first-child, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu > p:first-child, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu > p:first-child, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu > p:first-child, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu > p:first-child, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu > p:first-child, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu > p:first-child, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu > p:first-child, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu > p:first-child {
    padding-bottom: 0;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu > p + p, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu > p + p, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu > p + p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu > p + p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu > p + p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu > p + p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu > p + p, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu > p + p, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu > p + p, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu > p + p, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu > p + p, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu > p + p, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu > p + p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu > p + p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu > p + p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu > p + p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu > p + p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu > p + p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu > p + p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu > p + p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu > p + p, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu > p + p, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu > p + p, .agreePopDtl .notiCon .modalContent > ul > li .negu > p + p, .notiCon .agreePopDtl .modalContent > ul > li .negu > p + p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu > p + p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu > p + p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu > p + p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu > p + p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu > p + p, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu > p + p, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu > p + p, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu > p + p, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu > p + p, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu > p + p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu > p + p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu > p + p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu > p + p, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu > p + p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu > p + p, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu > p + p, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu > p + p, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu > p + p, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu > p + p, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu > p + p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu > p + p, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu > p + p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu > p + p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu > p + p {
    padding-top: 8px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu > p strong, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu > p strong, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu > p strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu > p strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu > p strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu > p strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu > p strong, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu > p strong, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu > p strong, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu > p strong, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu > p strong, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu > p strong, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu > p strong, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu > p strong, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu > p strong, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu > p strong, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu > p strong, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu > p strong, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu > p strong, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu > p strong, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu > p strong, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu > p strong, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu > p strong, .agreePopDtl .notiCon .modalContent > ul > li .negu > p strong, .notiCon .agreePopDtl .modalContent > ul > li .negu > p strong, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu > p strong, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu > p strong, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu > p strong, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu > p strong, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu > p strong, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu > p strong, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu > p strong, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu > p strong, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu > p strong, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu > p strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu > p strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu > p strong, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu > p strong, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu > p strong, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu > p strong, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu > p strong, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu > p strong, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu > p strong, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu > p strong, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu > p strong, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu > p strong, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu > p strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu > p strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu > p strong {
    color: #000;
    font-size: 18px;
    line-height: 28px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu > div:last-child p, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu > div:last-child p, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu > div:last-child p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu > div:last-child p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu > div:last-child p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu > div:last-child p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu > div:last-child p, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu > div:last-child p, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu > div:last-child p, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu > div:last-child p, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu > div:last-child p, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu > div:last-child p, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu > div:last-child p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu > div:last-child p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu > div:last-child p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu > div:last-child p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu > div:last-child p, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu > div:last-child p, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu > div:last-child p, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu > div:last-child p, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu > div:last-child p, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu > div:last-child p, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu > div:last-child p, .agreePopDtl .notiCon .modalContent > ul > li .negu > div:last-child p, .notiCon .agreePopDtl .modalContent > ul > li .negu > div:last-child p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu > div:last-child p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu > div:last-child p, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu > div:last-child p, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu > div:last-child p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu > div:last-child p, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu > div:last-child p, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu > div:last-child p, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu > div:last-child p, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu > div:last-child p, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu > div:last-child p, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu > div:last-child p, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu > div:last-child p, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu > div:last-child p, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu > div:last-child p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu > div:last-child p, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu > div:last-child p, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu > div:last-child p, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu > div:last-child p, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu > div:last-child p, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu > div:last-child p, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu > div:last-child p, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu > div:last-child p, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu > div:last-child p, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu > div:last-child p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 12px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu > div:last-child p + div, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu > div:last-child p + div, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu > div:last-child p + div, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu > div:last-child p + div, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu > div:last-child p + div, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu > div:last-child p + div, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu > div:last-child p + div, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu > div:last-child p + div, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu > div:last-child p + div, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu > div:last-child p + div, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu > div:last-child p + div, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu > div:last-child p + div, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu > div:last-child p + div, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu > div:last-child p + div, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu > div:last-child p + div, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu > div:last-child p + div, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu > div:last-child p + div, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu > div:last-child p + div, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu > div:last-child p + div, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu > div:last-child p + div, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu > div:last-child p + div, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu > div:last-child p + div, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu > div:last-child p + div, .agreePopDtl .notiCon .modalContent > ul > li .negu > div:last-child p + div, .notiCon .agreePopDtl .modalContent > ul > li .negu > div:last-child p + div, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu > div:last-child p + div, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu > div:last-child p + div, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu > div:last-child p + div, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu > div:last-child p + div, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu > div:last-child p + div, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu > div:last-child p + div, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu > div:last-child p + div, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu > div:last-child p + div, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu > div:last-child p + div, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu > div:last-child p + div, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu > div:last-child p + div, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu > div:last-child p + div, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu > div:last-child p + div, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu > div:last-child p + div, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu > div:last-child p + div, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu > div:last-child p + div, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu > div:last-child p + div, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu > div:last-child p + div, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu > div:last-child p + div, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu > div:last-child p + div, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu > div:last-child p + div, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu > div:last-child p + div, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu > div:last-child p + div, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu > div:last-child p + div {
    display: flex;
    width: 358px;
    height: 48px;
    margin: 0 auto;
    background: url(../img/godo2023/img_logo.png) no-repeat center/cover;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol, .agreePopDtl .notiCon .modalContent > ul > li .negu ol, .notiCon .agreePopDtl .modalContent > ul > li .negu ol, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol {
    display: block;
    margin: 60px 0;
    padding: 28px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol > li, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol > li, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol > li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol > li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol > li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol > li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol > li, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol > li, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol > li, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol > li, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol > li, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol > li, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol > li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol > li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol > li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol > li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol > li, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol > li, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol > li, .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li, .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol > li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol > li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol > li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol > li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol > li, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol > li, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol > li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol > li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol > li, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol > li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol > li, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol > li, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol > li, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol > li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol > li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol > li {
    padding-left: 32px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol > li:nth-child(1) strong, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol > li:nth-child(1) strong, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol > li:nth-child(1) strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol > li:nth-child(1) strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol > li:nth-child(1) strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol > li:nth-child(1) strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol > li:nth-child(1) strong, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol > li:nth-child(1) strong, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol > li:nth-child(1) strong, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(1) strong, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(1) strong, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(1) strong, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(1) strong, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(1) strong, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(1) strong, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(1) strong, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(1) strong, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(1) strong, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(1) strong, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(1) strong, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(1) strong, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol > li:nth-child(1) strong, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(1) strong, .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(1) strong, .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(1) strong, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol > li:nth-child(1) strong, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol > li:nth-child(1) strong, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol > li:nth-child(1) strong, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol > li:nth-child(1) strong, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol > li:nth-child(1) strong, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(1) strong, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li:nth-child(1) strong, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(1) strong, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li:nth-child(1) strong, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(1) strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol > li:nth-child(1) strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol > li:nth-child(1) strong, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol > li:nth-child(1) strong, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol > li:nth-child(1) strong, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol > li:nth-child(1) strong, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(1) strong, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li:nth-child(1) strong, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(1) strong, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li:nth-child(1) strong, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(1) strong, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol > li:nth-child(1) strong, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol > li:nth-child(1) strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol > li:nth-child(1) strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol > li:nth-child(1) strong {
    position: relative;
    display: inline-block;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol > li:nth-child(1) strong:before, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol > li:nth-child(1) strong:before, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol > li:nth-child(1) strong:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol > li:nth-child(1) strong:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol > li:nth-child(1) strong:before, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(1) strong:before, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol > li:nth-child(1) strong:before, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(1) strong:before, .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(1) strong:before, .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(1) strong:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol > li:nth-child(1) strong:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol > li:nth-child(1) strong:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(1) strong:before, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(1) strong:before, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(1) strong:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol > li:nth-child(1) strong:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol > li:nth-child(1) strong:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(1) strong:before, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(1) strong:before, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(1) strong:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol > li:nth-child(1) strong:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol > li:nth-child(1) strong:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol > li:nth-child(1) strong:before {
    position: absolute;
    display: inline-block;
    top: 4px;
    left: -28px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #000;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    content: '1';
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol > li:nth-child(2) strong, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol > li:nth-child(2) strong, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol > li:nth-child(2) strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol > li:nth-child(2) strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol > li:nth-child(2) strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol > li:nth-child(2) strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol > li:nth-child(2) strong, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol > li:nth-child(2) strong, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol > li:nth-child(2) strong, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(2) strong, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(2) strong, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(2) strong, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(2) strong, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(2) strong, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(2) strong, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(2) strong, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(2) strong, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(2) strong, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(2) strong, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(2) strong, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(2) strong, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol > li:nth-child(2) strong, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(2) strong, .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(2) strong, .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(2) strong, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol > li:nth-child(2) strong, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol > li:nth-child(2) strong, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol > li:nth-child(2) strong, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol > li:nth-child(2) strong, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol > li:nth-child(2) strong, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(2) strong, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li:nth-child(2) strong, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(2) strong, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li:nth-child(2) strong, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(2) strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol > li:nth-child(2) strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol > li:nth-child(2) strong, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol > li:nth-child(2) strong, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol > li:nth-child(2) strong, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol > li:nth-child(2) strong, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(2) strong, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li:nth-child(2) strong, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(2) strong, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li:nth-child(2) strong, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(2) strong, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol > li:nth-child(2) strong, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol > li:nth-child(2) strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol > li:nth-child(2) strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol > li:nth-child(2) strong {
    position: relative;
    display: inline-block;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol > li:nth-child(2) strong:before, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol > li:nth-child(2) strong:before, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol > li:nth-child(2) strong:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol > li:nth-child(2) strong:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol > li:nth-child(2) strong:before, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(2) strong:before, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol > li:nth-child(2) strong:before, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(2) strong:before, .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(2) strong:before, .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(2) strong:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol > li:nth-child(2) strong:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol > li:nth-child(2) strong:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(2) strong:before, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(2) strong:before, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(2) strong:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol > li:nth-child(2) strong:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol > li:nth-child(2) strong:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(2) strong:before, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(2) strong:before, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(2) strong:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol > li:nth-child(2) strong:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol > li:nth-child(2) strong:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol > li:nth-child(2) strong:before {
    position: absolute;
    display: inline-block;
    top: 4px;
    left: -28px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #000;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    content: '2';
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol > li:nth-child(3) strong, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol > li:nth-child(3) strong, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol > li:nth-child(3) strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol > li:nth-child(3) strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol > li:nth-child(3) strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol > li:nth-child(3) strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol > li:nth-child(3) strong, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol > li:nth-child(3) strong, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol > li:nth-child(3) strong, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(3) strong, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(3) strong, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(3) strong, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(3) strong, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(3) strong, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(3) strong, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(3) strong, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(3) strong, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(3) strong, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(3) strong, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(3) strong, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(3) strong, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol > li:nth-child(3) strong, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(3) strong, .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(3) strong, .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(3) strong, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol > li:nth-child(3) strong, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol > li:nth-child(3) strong, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol > li:nth-child(3) strong, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol > li:nth-child(3) strong, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol > li:nth-child(3) strong, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(3) strong, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li:nth-child(3) strong, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(3) strong, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li:nth-child(3) strong, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(3) strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol > li:nth-child(3) strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol > li:nth-child(3) strong, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol > li:nth-child(3) strong, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol > li:nth-child(3) strong, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol > li:nth-child(3) strong, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(3) strong, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li:nth-child(3) strong, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(3) strong, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li:nth-child(3) strong, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(3) strong, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol > li:nth-child(3) strong, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol > li:nth-child(3) strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol > li:nth-child(3) strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol > li:nth-child(3) strong {
    position: relative;
    display: inline-block;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol > li:nth-child(3) strong:before, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol > li:nth-child(3) strong:before, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol > li:nth-child(3) strong:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol > li:nth-child(3) strong:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol > li:nth-child(3) strong:before, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol > li:nth-child(3) strong:before, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol > li:nth-child(3) strong:before, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(3) strong:before, .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(3) strong:before, .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(3) strong:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol > li:nth-child(3) strong:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol > li:nth-child(3) strong:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(3) strong:before, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(3) strong:before, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(3) strong:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol > li:nth-child(3) strong:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol > li:nth-child(3) strong:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol > li:nth-child(3) strong:before, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li:nth-child(3) strong:before, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li:nth-child(3) strong:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol > li:nth-child(3) strong:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol > li:nth-child(3) strong:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol > li:nth-child(3) strong:before {
    position: absolute;
    display: inline-block;
    top: 4px;
    left: -28px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #000;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    content: '3';
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol > li + li, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol > li + li, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol > li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol > li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol > li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol > li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol > li + li, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol > li + li, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol > li + li, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol > li + li, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol > li + li, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol > li + li, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol > li + li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li + li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol > li + li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li + li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol > li + li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li + li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol > li + li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li + li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol > li + li, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol > li + li, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol > li + li, .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li + li, .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li + li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol > li + li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol > li + li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol > li + li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol > li + li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol > li + li, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol > li + li, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li + li, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li + li, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li + li, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol > li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol > li + li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol > li + li, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol > li + li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol > li + li, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol > li + li, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li + li, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li + li, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li + li, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li + li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol > li + li, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol > li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol > li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol > li + li {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #efefef;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol > li strong, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol > li strong, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol > li strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol > li strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol > li strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol > li strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol > li strong, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol > li strong, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol > li strong, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol > li strong, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol > li strong, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol > li strong, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol > li strong, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li strong, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol > li strong, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li strong, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol > li strong, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li strong, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol > li strong, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li strong, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol > li strong, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol > li strong, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol > li strong, .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li strong, .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li strong, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol > li strong, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol > li strong, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol > li strong, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol > li strong, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol > li strong, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol > li strong, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li strong, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li strong, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li strong, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol > li strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol > li strong, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol > li strong, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol > li strong, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol > li strong, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol > li strong, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li strong, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li strong, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li strong, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li strong, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol > li strong, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol > li strong, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol > li strong, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol > li strong {
    color: #000;
    font-size: 18px;
    line-height: 28px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol > li ul, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol > li ul, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol > li ul, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol > li ul, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol > li ul, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol > li ul, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol > li ul, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol > li ul, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol > li ul, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol > li ul, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol > li ul, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol > li ul, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol > li ul, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li ul, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol > li ul, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li ul, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol > li ul, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li ul, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol > li ul, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li ul, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol > li ul, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol > li ul, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol > li ul, .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li ul, .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li ul, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol > li ul, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol > li ul, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol > li ul, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol > li ul, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol > li ul, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol > li ul, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li ul, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li ul, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li ul, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li ul, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol > li ul, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol > li ul, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol > li ul, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol > li ul, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol > li ul, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol > li ul, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li ul, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li ul, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li ul, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li ul, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol > li ul, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol > li ul, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol > li ul, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol > li ul {
    margin-top: 8px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol > li ul li, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol > li ul li, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol > li ul li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol > li ul li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol > li ul li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol > li ul li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol > li ul li, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol > li ul li, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol > li ul li, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol > li ul li, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol > li ul li, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol > li ul li, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol > li ul li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li ul li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol > li ul li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li ul li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol > li ul li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li ul li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol > li ul li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li ul li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol > li ul li, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol > li ul li, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol > li ul li, .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li ul li, .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li ul li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol > li ul li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol > li ul li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol > li ul li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol > li ul li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol > li ul li, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol > li ul li, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li ul li, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li ul li, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li ul li, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li ul li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol > li ul li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol > li ul li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol > li ul li, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol > li ul li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol > li ul li, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol > li ul li, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li ul li, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li ul li, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li ul li, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li ul li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol > li ul li, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol > li ul li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol > li ul li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol > li ul li {
    position: relative;
    padding-left: 11px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol > li ul li:before, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol > li ul li:before, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol > li ul li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol > li ul li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol > li ul li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol > li ul li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol > li ul li:before, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol > li ul li:before, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol > li ul li:before, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol > li ul li:before, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol > li ul li:before, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol > li ul li:before, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol > li ul li:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li ul li:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol > li ul li:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li ul li:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol > li ul li:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li ul li:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol > li ul li:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li ul li:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol > li ul li:before, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol > li ul li:before, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol > li ul li:before, .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li ul li:before, .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li ul li:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol > li ul li:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol > li ul li:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol > li ul li:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol > li ul li:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol > li ul li:before, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol > li ul li:before, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li ul li:before, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li ul li:before, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li ul li:before, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li ul li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol > li ul li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol > li ul li:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol > li ul li:before, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol > li ul li:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol > li ul li:before, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol > li ul li:before, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li ul li:before, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li ul li:before, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li ul li:before, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li ul li:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol > li ul li:before, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol > li ul li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol > li ul li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol > li ul li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #bfbfbf;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .negu ol > li ul li + li, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .negu ol > li ul li + li, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .negu ol > li ul li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .negu ol > li ul li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .negu ol > li ul li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .negu ol > li ul li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .negu ol > li ul li + li, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .negu ol > li ul li + li, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .negu ol > li ul li + li, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .negu ol > li ul li + li, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .negu ol > li ul li + li, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .negu ol > li ul li + li, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .negu ol > li ul li + li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li ul li + li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .negu ol > li ul li + li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .negu ol > li ul li + li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .negu ol > li ul li + li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li ul li + li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .negu ol > li ul li + li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .negu ol > li ul li + li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .negu ol > li ul li + li, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .negu ol > li ul li + li, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .negu ol > li ul li + li, .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li ul li + li, .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li ul li + li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .negu ol > li ul li + li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .negu ol > li ul li + li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .negu ol > li ul li + li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .negu ol > li ul li + li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .negu ol > li ul li + li, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .negu ol > li ul li + li, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li ul li + li, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li ul li + li, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .negu ol > li ul li + li, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li ul li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .negu ol > li ul li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .negu ol > li ul li + li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .negu ol > li ul li + li, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .negu ol > li ul li + li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .negu ol > li ul li + li, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .negu ol > li ul li + li, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li ul li + li, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .negu ol > li ul li + li, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .negu ol > li ul li + li, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .negu ol > li ul li + li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .negu ol > li ul li + li, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .negu ol > li ul li + li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .negu ol > li ul li + li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .negu ol > li ul li + li {
    margin-top: 8px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .c-term, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .c-term, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .c-term, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .c-term, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .c-term, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .c-term, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .c-term, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .c-term, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .c-term, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .c-term, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .c-term, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .c-term, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .c-term, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .c-term, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .c-term, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .c-term, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .c-term, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .c-term, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .c-term, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .c-term, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .c-term, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .c-term, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .c-term, .agreePopDtl .notiCon .modalContent > ul > li .c-term, .notiCon .agreePopDtl .modalContent > ul > li .c-term, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .c-term, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .c-term, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .c-term, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .c-term, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .c-term, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .c-term, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .c-term, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .c-term, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .c-term, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .c-term, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .c-term, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .c-term, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .c-term, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .c-term, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .c-term, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .c-term, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .c-term, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .c-term, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .c-term, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .c-term, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .c-term, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .c-term, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .c-term, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .c-term {
    font-size: 16px;
    line-height: 26px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .c-term h3, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .c-term h3, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .c-term h3, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .c-term h3, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .c-term h3, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .c-term h3, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .c-term h3, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .c-term h3, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .c-term h3, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .c-term h3, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .c-term h3, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .c-term h3, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .c-term h3, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .c-term h3, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .c-term h3, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .c-term h3, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .c-term h3, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .c-term h3, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .c-term h3, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .c-term h3, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .c-term h3, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .c-term h3, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .c-term h3, .agreePopDtl .notiCon .modalContent > ul > li .c-term h3, .notiCon .agreePopDtl .modalContent > ul > li .c-term h3, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .c-term h3, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .c-term h3, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .c-term h3, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .c-term h3, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .c-term h3, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .c-term h3, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .c-term h3, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .c-term h3, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .c-term h3, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .c-term h3, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .c-term h3, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .c-term h3, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .c-term h3, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .c-term h3, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .c-term h3, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .c-term h3, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .c-term h3, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .c-term h3, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .c-term h3, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .c-term h3, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .c-term h3, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .c-term h3, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .c-term h3, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .c-term h3 {
    color: #000;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .c-term .listType2 li, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .c-term .listType2 li, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .c-term .listType2 li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .c-term .listType2 li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .c-term .listType2 li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .c-term .listType2 li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .c-term .listType2 li, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .c-term .listType2 li, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .c-term .listType2 li, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .c-term .listType2 li, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .c-term .listType2 li, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .c-term .listType2 li, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .c-term .listType2 li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .c-term .listType2 li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .c-term .listType2 li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .c-term .listType2 li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .c-term .listType2 li, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .c-term .listType2 li, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .c-term .listType2 li, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .c-term .listType2 li, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .c-term .listType2 li, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .c-term .listType2 li, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .c-term .listType2 li, .agreePopDtl .notiCon .modalContent > ul > li .c-term .listType2 li, .notiCon .agreePopDtl .modalContent > ul > li .c-term .listType2 li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .c-term .listType2 li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .c-term .listType2 li, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .c-term .listType2 li, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .c-term .listType2 li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .c-term .listType2 li, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .c-term .listType2 li, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .c-term .listType2 li, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .c-term .listType2 li, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .c-term .listType2 li, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .c-term .listType2 li, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .c-term .listType2 li, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .c-term .listType2 li, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .c-term .listType2 li, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .c-term .listType2 li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .c-term .listType2 li, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .c-term .listType2 li, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .c-term .listType2 li, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .c-term .listType2 li, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .c-term .listType2 li, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .c-term .listType2 li, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .c-term .listType2 li, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .c-term .listType2 li, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .c-term .listType2 li, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .c-term .listType2 li {
    padding-left: 11px !important;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .c-term .listType2 li:before, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .c-term .listType2 li:before, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .c-term .listType2 li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .c-term .listType2 li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .c-term .listType2 li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .c-term .listType2 li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .c-term .listType2 li:before, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .c-term .listType2 li:before, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .c-term .listType2 li:before, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .c-term .listType2 li:before, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .c-term .listType2 li:before, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .c-term .listType2 li:before, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .c-term .listType2 li:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .c-term .listType2 li:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .c-term .listType2 li:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .c-term .listType2 li:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .c-term .listType2 li:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .c-term .listType2 li:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .c-term .listType2 li:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .c-term .listType2 li:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .c-term .listType2 li:before, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .c-term .listType2 li:before, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .c-term .listType2 li:before, .agreePopDtl .notiCon .modalContent > ul > li .c-term .listType2 li:before, .notiCon .agreePopDtl .modalContent > ul > li .c-term .listType2 li:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .c-term .listType2 li:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .c-term .listType2 li:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .c-term .listType2 li:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .c-term .listType2 li:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .c-term .listType2 li:before, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .c-term .listType2 li:before, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .c-term .listType2 li:before, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .c-term .listType2 li:before, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .c-term .listType2 li:before, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .c-term .listType2 li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .c-term .listType2 li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .c-term .listType2 li:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .c-term .listType2 li:before, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .c-term .listType2 li:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .c-term .listType2 li:before, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .c-term .listType2 li:before, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .c-term .listType2 li:before, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .c-term .listType2 li:before, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .c-term .listType2 li:before, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .c-term .listType2 li:before, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .c-term .listType2 li:before, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .c-term .listType2 li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .c-term .listType2 li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .c-term .listType2 li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px !important;
    height: 3px !important;
    border-radius: 100%;
    background: #bfbfbf;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .c-term .agreeCon, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .c-term .agreeCon, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .c-term .agreeCon, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .c-term .agreeCon, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .c-term .agreeCon, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .c-term .agreeCon, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .c-term .agreeCon, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .c-term .agreeCon, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .c-term .agreeCon, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .c-term .agreeCon, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .c-term .agreeCon, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .c-term .agreeCon, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .c-term .agreeCon, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .c-term .agreeCon, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .c-term .agreeCon, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .c-term .agreeCon, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .c-term .agreeCon, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .c-term .agreeCon, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .c-term .agreeCon, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .c-term .agreeCon, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .c-term .agreeCon, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .c-term .agreeCon, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .c-term .agreeCon, .agreePopDtl .notiCon .modalContent > ul > li .c-term .agreeCon, .notiCon .agreePopDtl .modalContent > ul > li .c-term .agreeCon, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .c-term .agreeCon, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .c-term .agreeCon, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .c-term .agreeCon, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .c-term .agreeCon, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .c-term .agreeCon, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .c-term .agreeCon, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .c-term .agreeCon, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .c-term .agreeCon, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .c-term .agreeCon, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .c-term .agreeCon, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .c-term .agreeCon, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .c-term .agreeCon, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .c-term .agreeCon, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .c-term .agreeCon, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .c-term .agreeCon, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .c-term .agreeCon, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .c-term .agreeCon, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .c-term .agreeCon, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .c-term .agreeCon, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .c-term .agreeCon, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .c-term .agreeCon, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .c-term .agreeCon, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .c-term .agreeCon, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .c-term .agreeCon {
    font-size: 16px;
    line-height: 26px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem .c-term .txt, .agreePopDtl .notiCon .modalContent > ul > .bulletItem .c-term .txt, .notiCon .agreePopDtl .modalContent > ul > .bulletItem .c-term .txt, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem .c-term .txt, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem .c-term .txt, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem .c-term .txt, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem .c-term .txt, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem .c-term .txt, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem .c-term .txt, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem .c-term .txt, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem .c-term .txt, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem .c-term .txt, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem .c-term .txt, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem .c-term .txt, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem .c-term .txt, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem .c-term .txt, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem .c-term .txt, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem .c-term .txt, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem .c-term .txt, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem .c-term .txt, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem .c-term .txt, .agreePopDtl .notiCon ul .modalContent > .bulletList > li .c-term .txt, .notiCon ul .agreePopDtl .modalContent > .bulletList > li .c-term .txt, .agreePopDtl .notiCon .modalContent > ul > li .c-term .txt, .notiCon .agreePopDtl .modalContent > ul > li .c-term .txt, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li .c-term .txt, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li .c-term .txt, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li .c-term .txt, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li .c-term .txt, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li .c-term .txt, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li .c-term .txt, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li .c-term .txt, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li .c-term .txt, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li .c-term .txt, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li .c-term .txt, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li .c-term .txt, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li .c-term .txt, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li .c-term .txt, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li .c-term .txt, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li .c-term .txt, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li .c-term .txt, .agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li .c-term .txt, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li .c-term .txt, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li .c-term .txt, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li .c-term .txt, .agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li .c-term .txt, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li .c-term .txt, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li .c-term .txt, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li .c-term .txt {
    font-size: 16px;
    line-height: 26px;
}

.agreePopDtl .modalContent > .bulletList > .bulletItem:before, .agreePopDtl .notiCon .modalContent > ul > .bulletItem:before, .notiCon .agreePopDtl .modalContent > ul > .bulletItem:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .bulletItem:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .bulletItem:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .bulletItem:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .bulletItem:before, .agreePopDtl .modalTable .modalContent > .bulletList > .tableBulletItem:before, .modalTable .agreePopDtl .modalContent > .bulletList > .tableBulletItem:before, .agreePopDtl .notiCon .modalTable .modalContent > ul > .tableBulletItem:before, .modalTable .agreePopDtl .notiCon .modalContent > ul > .tableBulletItem:before, .notiCon .agreePopDtl .modalTable .modalContent > ul > .tableBulletItem:before, .modalTable .notiCon .agreePopDtl .modalContent > ul > .tableBulletItem:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList03 > .tableBulletItem:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > .tableBulletItem:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList03 > .tableBulletItem:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > .tableBulletItem:before, .agreePopDtl .acc-menu-cnt .modalTable .modalContent > .txList05 > .tableBulletItem:before, .modalTable .agreePopDtl .acc-menu-cnt .modalContent > .txList05 > .tableBulletItem:before, .acc-menu-cnt .agreePopDtl .modalTable .modalContent > .txList05 > .tableBulletItem:before, .modalTable .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > .tableBulletItem:before, .agreePopDtl .notiCon ul .modalContent > .bulletList > li:before, .notiCon ul .agreePopDtl .modalContent > .bulletList > li:before, .agreePopDtl .notiCon .modalContent > ul > li:before, .notiCon .agreePopDtl .modalContent > ul > li:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList03 > li:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList03 > li:before, .agreePopDtl .acc-menu-cnt .notiCon ul .modalContent > .txList05 > li:before, .acc-menu-cnt .agreePopDtl .notiCon ul .modalContent > .txList05 > li:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .bulletList > li:before, .acc-menu-cnt .txList03 .agreePopDtl .modalContent > .bulletList > li:before, .agreePopDtl .notiCon .acc-menu-cnt .txList03 .modalContent > ul > li:before, .acc-menu-cnt .txList03 .agreePopDtl .notiCon .modalContent > ul > li:before, .notiCon .agreePopDtl .acc-menu-cnt .txList03 .modalContent > ul > li:before, .acc-menu-cnt .txList03 .notiCon .agreePopDtl .modalContent > ul > li:before, .agreePopDtl .acc-menu-cnt .modalContent > .txList03 > li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList03 > li:before, .agreePopDtl .acc-menu-cnt .txList03 .modalContent > .txList05 > li:before, .acc-menu-cnt .agreePopDtl .txList03 .modalContent > .txList05 > li:before,
.agreePopDtl .acc-menu-cnt .txList05 .modalContent > .bulletList > li:before, .acc-menu-cnt .txList05 .agreePopDtl .modalContent > .bulletList > li:before,
.agreePopDtl .notiCon .acc-menu-cnt .txList05 .modalContent > ul > li:before, .acc-menu-cnt .txList05 .agreePopDtl .notiCon .modalContent > ul > li:before, .notiCon .agreePopDtl .acc-menu-cnt .txList05 .modalContent > ul > li:before, .acc-menu-cnt .txList05 .notiCon .agreePopDtl .modalContent > ul > li:before,
.agreePopDtl .acc-menu-cnt .txList05 .modalContent > .txList03 > li:before, .acc-menu-cnt .agreePopDtl .txList05 .modalContent > .txList03 > li:before,
.agreePopDtl .acc-menu-cnt .modalContent > .txList05 > li:before, .acc-menu-cnt .agreePopDtl .modalContent > .txList05 > li:before {
    display: none;
}

.agreePopDtl .modalContent h3.adminDepOne,
.agreePopDtl .modalContent h3.fColor5 {
    margin-top: 40px;
    margin-bottom: 8px;
    color: #000;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.agreePopDtl .modalContent h3.adminDepOne:first-child,
.agreePopDtl .modalContent h3.fColor5:first-child {
    margin-top: 0;
}

.agreePopDtl .modalContent h4.adminDepTwo {
    margin-top: 20px;
    color: #000;
    font-size: 16px;
    line-height: 26px;
}

.agreePopDtl .modalContent h4.adminDepTwo:first-child {
    margin-top: 0;
}

.agreePopDtl .modalContent .adminDepTwo {
    margin-top: 8px;
}

.agreePopDtl .modalContent .adminDepTwo > li {
    position: relative;
    padding-left: 11px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.agreePopDtl .modalContent .adminDepTwo > li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #bfbfbf;
}

.agreePopDtl .modalContent .adminDepTwo > li + li {
    margin-top: 8px;
}

.agreePopDtl .modalContent .adminDepTwo > li > ul,
.agreePopDtl .modalContent .adminDepTwo > li > ol {
    margin-top: 8px;
}

.agreePopDtl .modalContent .adminDepTwo > li > ul li,
.agreePopDtl .modalContent .adminDepTwo > li > ol li {
    padding-left: 0;
    color: #909090;
}

.agreePopDtl .modalContent .adminDepTwo > li > ul li:before,
.agreePopDtl .modalContent .adminDepTwo > li > ol li:before {
    display: none;
}

.agreePopDtl .modalContent .adminDepTwo > li > ul li + li,
.agreePopDtl .modalContent .adminDepTwo > li > ol li + li {
    margin-top: 8px;
}

.agreePopDtl .modalContent .adminDepTwo > li > ul li > ul,
.agreePopDtl .modalContent .adminDepTwo > li > ul li > ol,
.agreePopDtl .modalContent .adminDepTwo > li > ol li > ul,
.agreePopDtl .modalContent .adminDepTwo > li > ol li > ol {
    margin-top: 8px;
    padding-left: 18px;
}

.agreePopDtl .modalContent .adminDepTwo > li > ul li > ul li,
.agreePopDtl .modalContent .adminDepTwo > li > ul li > ol li,
.agreePopDtl .modalContent .adminDepTwo > li > ol li > ul li,
.agreePopDtl .modalContent .adminDepTwo > li > ol li > ol li {
    padding-left: 0;
    color: #909090;
}

.agreePopDtl .modalContent .adminDepTwo > li > ul li > ul li:before,
.agreePopDtl .modalContent .adminDepTwo > li > ul li > ol li:before,
.agreePopDtl .modalContent .adminDepTwo > li > ol li > ul li:before,
.agreePopDtl .modalContent .adminDepTwo > li > ol li > ol li:before {
    display: none;
}

.agreePopDtl .modalContent .adminDepTwo > li > ul li > ul li + li,
.agreePopDtl .modalContent .adminDepTwo > li > ul li > ol li + li,
.agreePopDtl .modalContent .adminDepTwo > li > ol li > ul li + li,
.agreePopDtl .modalContent .adminDepTwo > li > ol li > ol li + li {
    margin-top: 8px;
}

.agreePopDtl .modalContent .adminDepTwo + p > strong {
    display: block;
    margin-top: 20px;
}

.agreePopDtl .modalContent .adminDepThree {
    margin-top: 8px;
}

.agreePopDtl .modalContent .adminDepThree > li {
    position: relative;
    padding-left: 11px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.agreePopDtl .modalContent .adminDepThree > li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #bfbfbf;
}

.agreePopDtl .modalContent .adminDepThree > li + li {
    margin-top: 8px;
}

.agreePopDtl .modalContent .adminDepThree > li > ul,
.agreePopDtl .modalContent .adminDepThree > li > ol {
    margin-top: 8px;
}

.agreePopDtl .modalContent .adminDepThree > li > ul li,
.agreePopDtl .modalContent .adminDepThree > li > ol li {
    position: relative;
    padding-left: 11px;
    color: #909090;
}

.agreePopDtl .modalContent .adminDepThree > li > ul li:before,
.agreePopDtl .modalContent .adminDepThree > li > ol li:before {
    position: absolute;
    top: 12px;
    left: 0;
    content: '';
    display: block;
    width: 5px;
    height: 2px;
    border-radius: 100%;
    background: #bfbfbf;
}

.agreePopDtl .modalContent .adminDepThree > li > ul li + li,
.agreePopDtl .modalContent .adminDepThree > li > ol li + li {
    margin-top: 8px;
}

.agreePopDtl .modalContent .agreeCon.type3 {
    font-size: 16px;
    line-height: 26px;
}

.agreePopDtl .modalContent .agreeCon.type3 h2 {
    color: #000;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.agreePopDtl .modalContent .agreeCon.type3 h3 {
    color: #000;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
}

.agreePopDtl .modalContent .agreeCon.type3 .terms_area.scrollBox {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.agreePopDtl .modalContent .agreeCon .terms_area.scrollBox {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.agreePopDtl .modalContent .agreeCon .terms_area.scrollBox h3 {
    color: #000;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.agreePopDtl .modalContent .agreeCon .terms_area.scrollBox > p {
    word-break: normal;
}

.agreePopDtl .modalContent .agreeCon .agree_wrap .agree_cont h3 {
    color: #000;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.agreePopDtl .modalContent .tableType1 {
    margin-top: 8px;
}

.agreePopDtl .modalContent .tableType1 .table-term {
    text-align: center;
}

.agreePopDtl .modalContent .tableType1 .table-term thead tr th,
.agreePopDtl .modalContent .tableType1 .table-term thead tr td {
    padding: 12px 8px;
    border: 1px solid #e1e1e1 !important;
    background-color: #f7f7f7 !important;
    border-left: none !important;
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 13px;
    line-height: 23px;
}

.agreePopDtl .modalContent .tableType1 .table-term thead tr th:last-child,
.agreePopDtl .modalContent .tableType1 .table-term thead tr td:last-child {
    border-right: none !important;
}

.agreePopDtl .modalContent .tableType1 .table-term thead tr th > p > strong,
.agreePopDtl .modalContent .tableType1 .table-term thead tr td > p > strong {
    color: #666 !important;
    font-weight: 400 !important;
}

.agreePopDtl .modalContent .tableType1 .table-term tbody tr th {
    border: 1px solid #e1e1e1 !important;
    background-color: #f7f7f7 !important;
    color: #666 !important;
    border-left: none !important;
    border-top: none !important;
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
}

.agreePopDtl .modalContent .tableType1 .table-term tbody tr td {
    padding: 12px;
    border: 1px solid #e1e1e1 !important;
    color: #909090 !important;
    border-right: none !important;
    border-top: none !important;
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
}

.agreePopDtl .modalContent .tableType1.h5 .table-term-row th,
.agreePopDtl .modalContent .tableType1.h5 .table-term-row td {
    font-size: 13px;
    line-height: 23px;
    color: #666 !important;
}

.agreePopDtl .modalContent .tableType1.h5 .table-term-row th strong,
.agreePopDtl .modalContent .tableType1.h5 .table-term-row td strong {
    color: #666 !important;
    font-weight: 400;
}

.otherOptionList .optionItem {
    display: flex;
    align-items: center;
}

.otherOptionList .optionItem + .optionItem {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}

.otherOptionList .optionItem .img {
    display: block;
    width: 160px;
    height: 160px;
}

.otherOptionList .optionItem .info {
    flex: 1 0 0;
    margin: 0 60px 0 20px;
}

.otherOptionList .optionItem .info .name {
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}

.otherOptionList .optionItem .info .giga {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.talkList {
    display: flex;
    gap: 12px;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

.talkList .talkItem {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.talkList .talkItem .btnTalk {
    display: block;
    width: 80px;
    height: 80px;
}

.talkList .talkItem .btnTalk.call {
    background: url(../img/godo2023/ico_cart_call.svg) no-repeat center/cover;
}

.talkList .talkItem .btnTalk.chat {
    background: url(../img/godo2023/ico_cart_chat.svg) no-repeat center/cover;
}

.talkList .talkItem .btnTalk.kakao {
    background: url(../img/godo2023/ico_cart_kakao.svg) no-repeat center/cover;
}

.talkList .talkItem span {
    margin-top: 8px;
    font-size: 16px;
    line-height: 26px;
    color: #444;
}

.joinGroup .btnRadio + .btnRadio {
    margin-top: 12px;
}

.deviceList {
    display: flex;
    padding: 28px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.deviceList li {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.deviceList li:not(:first-child) {
    border-left: 1px solid #efefef;
}

.deviceList li .ico {
    display: block;
    width: 80px;
    height: 80px;
}

.deviceList li .ico.phone {
    background: url(../img/godo2023/ico_omd_phone.svg) no-repeat center/cover;
}

.deviceList li .ico.tablet {
    background: url(../img/godo2023/ico_omd_tablet.svg) no-repeat center/cover;
}

.deviceList li .ico.wifi {
    background: url(../img/godo2023/ico_omd_wifi.svg) no-repeat center/cover;
}

.deviceList li .deviceGroup {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 20px;
}

.deviceList li .deviceGroup .formRadio.checked .text {
    font-weight: 700;
    color: #4130df;
}

.companyGroup {
    display: flex;
    gap: 12px;
}

.companyGroup .btnRadio.checked {
    color: #000;
}

.companyGroup .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

.companyGroup .info .ico {
    display: block;
    width: 60px;
    height: 60px;
}

.companyGroup .info .ico.samsung {
    background: url(../img/godo2023/ico_samsung.svg) no-repeat center/cover;
}

.companyGroup .info .ico.apple {
    background: url(../img/godo2023/ico_apple.svg) no-repeat center/cover;
}

.companyGroup .info .ico.etc {
    background: url(../img/godo2023/ico_etc.svg) no-repeat center/cover;
}

.companyGroup .info span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
}

.imeiCheck .formCheckbox.checked ~ .imeiCont {
    display: block;
}

.imeiCheck .tooltip {
    margin-left: 8px;
    vertical-align: 4px;
}

.imeiCheck .imeiCont {
    display: none;
    padding: 40px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.prdNameWrap {
    margin-bottom: 60px;
}

.deviceInfo .emsList {
    border: none;
    padding: 0;
}

.deviceInfo .emsList li {
    padding: 0 0 0 28px;
}

.deviceInfo .emsList li::before {
    top: 4px;
}

.deviceInfo .emsList li + li {
    margin-top: 40px;
    border: none;
}

.deviceInfo .imgBox {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    border-radius: 8px;
    background: #f7f7f7;
}

.deviceInfo .imgBox img {
    width: 400px;
}

.deviceInfo .tipArea {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.deviceInfo .tipArea .tag {
    padding: 0 8px;
}

.deviceInfo .tipArea p {
    font-weight: 500;
    font-size: 16px;
    color: #444;
}

.omdPageTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.omdPageTitle h2 {
    font-weight: 400;
    font-size: 34px;
    line-height: 42px;
    color: #333;
}

.innerRow {
    padding: 120px 0;
}

.innerRow.bg {
    background: #f7f7f7;
}

.innerRow.pdbt {
    padding-bottom: 96px;
}

.sec + .sec {
    margin-top: 120px;
}

.sec .secHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sec .secHeader .btnSt, .sec .secHeader body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .sec .secHeader a, .sec .secHeader body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .sec .secHeader .cart-btn, .sec .secHeader body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .sec .secHeader .group-total-btn > a, .sec .secHeader body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .sec .secHeader .btn-primary, .sec .secHeader body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .sec .secHeader .btn-semi, .sec .secHeader body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .sec .secHeader .btn-outline-primary {
    width: 300px;
}

.sec .secTitle {
    font-weight: 700;
    font-size: 26px;
    line-height: 40px;
}

.sec .secTitle span {
    font-weight: 400 !important;
}

.sec.visual .imgBox {
    display: block;
    height: 320px;
    background-color: #685dfb;
}

.sec.visual .imgBox img {
    object-fit: contain;
    width: 100%;
    height: inherit;
}

.sec.visual .imgBox.esim {
    background-color: #568aff;
}

.sec.subscribe .subTextInfo {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #4130df;
}

.sec.subscribe .subTextInfo:before {
    content: '';
    display: inline-block;
    height: 20px;
    width: 20px;
    vertical-align: -4px;
    margin-right: 4px;
    background-image: url("../img/godo2023/ico_text_info_primary.svg");
}

.sec.subscribe .arrLink, .sec.subscribe .arrLinkGray {
    margin-top: 20px;
}

.sec.subscribe .subGraghp::before {
    content: '';
    display: block;
    width: 100%;
    height: 52px;
    background: url(../img/godo2023/img_omd_line.png) no-repeat center/100% 100%;
}

.sec.subscribe .subGraghp .subGraghpList {
    display: flex;
    gap: 40px;
    counter-reset: number 0;
}

.sec.subscribe .subGraghp .subGraghpList li {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.08);
}

.sec.subscribe .subGraghp .subGraghpList li::before {
    counter-increment: number 1;
    content: counter(number);
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    color: #fff;
    background: #000;
}

.sec.subscribe .subGraghp .subGraghpList li p {
    margin-top: 12px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}

.sec.subscribe .subGraghp .subGraghpList li .ico {
    margin-top: 20px;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
}

.sec.subscribe .subGraghp .subGraghpList li span {
    margin-top: 20px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #666;
}

.sec.recommand .recommList {
    display: flex;
    padding: 40px;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.08);
}

.sec.recommand .recommList li {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sec.recommand .recommList li + li {
    border-left: 1px solid #efefef;
}

.sec.recommand .recommList li .ico {
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
}

.sec.recommand .recommList li p {
    display: flex;
    align-items: center;
    min-height: 52px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.sec.directPlan + .agreeInfo {
    margin-top: 56px !important;
}

.sec.directPlan .planItemBox {
    height: 264px;
    box-sizing: border-box;
    margin-top: 0;
    border-radius: 12px;
    background: #fff;
}

.sec.directPlan .planItemBox .titleBox .title strong {
    margin-top: 4px;
}

.sec.directPlan .planItemBox .price strong {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.sec.directPlan .planItemBox .price strong em {
    line-height: inherit;
}

.sec.directPlan .planItemBox .benefitList {
    margin-top: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sec.directPlan .planItemBox .benefitItem {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sec.directPlan .planItemBox .benefitItem + .benefitItem {
    margin-top: 0;
}

.sec.directPlan .planItemBox .benefitItem + .benefitItem:last-child {
    margin-top: 12px;
    margin-left: 0;
}

.sec.directPlan .planItemBox .benefitItem span {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}

.sec.directPlan .planItemBox .benefitItem i {
    width: 32px;
    height: 32px;
}

.sec.directPlan .swiperWrap {
    position: relative;
    width: 1220px;
    margin: 0 auto;
}

.sec.directPlan .swiperWrap .swiperNavigation5g,
.sec.directPlan .swiperWrap .swiperNavigation {
    top: calc(50% - 15px);
}

.sec.directPlan .swiperWrap .swiperNavigation5g {
    align-items: center;
}

.sec.directPlan .swiperWrap .swiper-slide .bulletList, .sec.directPlan .swiperWrap .swiper-slide .notiCon ul, .notiCon .sec.directPlan .swiperWrap .swiper-slide ul, .sec.directPlan .swiperWrap .swiper-slide .acc-menu-cnt .txList03, .acc-menu-cnt .sec.directPlan .swiperWrap .swiper-slide .txList03,
.sec.directPlan .swiperWrap .swiper-slide .acc-menu-cnt .txList05, .acc-menu-cnt .sec.directPlan .swiperWrap .swiper-slide .txList05 {
    margin-top: 8px;
}

.sec.directPlan .swiperWrap .swiper-slide-active .itemWrap {
    padding: 0 10px 24px 20px;
}

.sec.directPlan .swiperWrap .swiper-slide-active .itemWrap .planItemBox {
    box-shadow: 0 10px 24px 0 rgba(0, 0, 0, 0.08);
}

.sec.directPlan .swiperWrap .swiper-slide-next .itemWrap {
    padding: 0 20px 24px 10px;
}

.sec.directPlan .swiperWrap .swiper-slide-next .itemWrap .planItemBox {
    box-shadow: 0 10px 24px 0 rgba(0, 0, 0, 0.08);
}

.sec.directPlan .swiperNavigation5g .swiperButtonPrev.circle,
.sec.directPlan .swiperNavigation5g .swiperButtonNext.circle {
    width: 60px;
    height: 60px;
    border: 1px solid #efefef;
    border-radius: 50%;
    filter: drop-shadow(0 2px 9px rgba(0, 0, 0, 0.08));
    box-sizing: border-box;
}

.sec.directPlan .circleSwiperBtn {
    transform: translateY(-50%);
}

.sec.directPlan .swiperButtonPrev.circle,
.sec.directPlan .swiperButtonNext.circle {
    margin: 0 -60px;
    filter: drop-shadow(0 2px 9px rgba(0, 0, 0, 0.1));
    background: rgba(255, 255, 255, 0.8) url(../img/godo2023/ico_swiper_arr.svg) no-repeat center/24px 24px;
}

.sec.directPlan .swiperButtonPrev.circle::before,
.sec.directPlan .swiperButtonNext.circle::before {
    content: unset;
}

.sec.directPlan .swiperButtonPrev.swiper-button-disabled,
.sec.directPlan .swiperButtonNext.swiper-button-disabled {
    background: rgba(255, 255, 255, 0.8) url(../img/godo2023/ico_disabled_arr.svg) no-repeat center/24px 24px;
}

.sec.directPlan .swiperButtonPrev {
    transform: rotate(-180deg);
}

.sec.directPlan .swiperButtonPrev.swiper-button-disabled {
    transform: rotate(0);
}

.sec.directPlan .swiperButtonNext.swiper-button-disabled {
    transform: rotate(180deg);
}

.sec.agreeInfo .agreeInfoBox {
    padding: 40px;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: #fff;
}

.sec.agreeInfo .agreeInfoBox .infoList > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}

.sec.agreeInfo .agreeInfoBox .infoList > li + li {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #efefef;
}

.sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti {
    flex-wrap: wrap;
}

.sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .bulletList, .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .notiCon ul, .notiCon .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti ul, .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .acc-menu-cnt .txList03, .acc-menu-cnt .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .txList03,
.sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .acc-menu-cnt .txList05, .acc-menu-cnt .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .txList05 {
    flex: 0 0 100%;
}

.sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .bulletList .bulletItem .bulIndent, .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .notiCon ul .bulletItem .bulIndent, .notiCon .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti ul .bulletItem .bulIndent, .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .acc-menu-cnt .txList03 .bulletItem .bulIndent, .acc-menu-cnt .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .txList03 .bulletItem .bulIndent, .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .acc-menu-cnt .txList05 .bulletItem .bulIndent, .acc-menu-cnt .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .txList05 .bulletItem .bulIndent, .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .bulletList .modalTable .tableBulletItem .bulIndent, .modalTable .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .bulletList .tableBulletItem .bulIndent, .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .notiCon ul .modalTable .tableBulletItem .bulIndent, .modalTable .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .notiCon ul .tableBulletItem .bulIndent, .notiCon .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti ul .modalTable .tableBulletItem .bulIndent, .modalTable .notiCon .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti ul .tableBulletItem .bulIndent, .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .acc-menu-cnt .txList03 .modalTable .tableBulletItem .bulIndent, .modalTable .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .acc-menu-cnt .txList03 .tableBulletItem .bulIndent, .acc-menu-cnt .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .txList03 .modalTable .tableBulletItem .bulIndent, .modalTable .acc-menu-cnt .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .txList03 .tableBulletItem .bulIndent, .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .acc-menu-cnt .txList05 .modalTable .tableBulletItem .bulIndent, .modalTable .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .acc-menu-cnt .txList05 .tableBulletItem .bulIndent, .acc-menu-cnt .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .txList05 .modalTable .tableBulletItem .bulIndent, .modalTable .acc-menu-cnt .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .txList05 .tableBulletItem .bulIndent, .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .bulletList .notiCon ul li .bulIndent, .notiCon ul .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .bulletList li .bulIndent, .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .notiCon ul li .bulIndent, .notiCon .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti ul li .bulIndent, .acc-menu-cnt .txList03 .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .bulletList li .bulIndent, .acc-menu-cnt .txList03 .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .notiCon ul li .bulIndent, .acc-menu-cnt .txList03 .notiCon .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti ul li .bulIndent, .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .acc-menu-cnt .txList03 li .bulIndent, .acc-menu-cnt .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .txList03 li .bulIndent, .acc-menu-cnt .txList05 .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .bulletList li .bulIndent, .acc-menu-cnt .txList05 .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .notiCon ul li .bulIndent, .acc-menu-cnt .txList05 .notiCon .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti ul li .bulIndent, .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .acc-menu-cnt .txList05 li .bulIndent, .acc-menu-cnt .sec.agreeInfo .agreeInfoBox .infoList > li.esimNoti .txList05 li .bulIndent {
    display: block;
    color: #909090;
}

.sec.agreeInfo .agreeInfoBox .infoList > li .btnOpen,
.sec.agreeInfo .agreeInfoBox .infoList > li .btnAcd {
    width: 16px;
    height: 16px;
    background: url(../img/godo2023/ico_accordian_arrow.svg) no-repeat center/cover;
    transform: rotate(-90deg);
}

.sec.agreeInfo .agreeInfoBox .infoList > li .btnAcd {
    transform: rotate(0);
}

.sec.agreeInfo .agreeInfoBox .infoList > li.open [data-acd-btn] {
    background: url(../img/godo2023/ico_accordian_arrow_on.svg) no-repeat center/cover;
}

.sec.esimVdo .video {
    display: flex;
    justify-content: center;
}

.sec.esimVdo .video video {
    width: 770px;
    height: 436px;
}

/*
설소윤 S ---------------------------------------------------------------------------------------------------------------------------------------------------
*/
.adrMainTit {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: #000;
}

.adrMainTit strong {
    color: #4130df;
}

.adrRsltText {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #000;
}

.adrRsltList .adrRsltItem {
    padding: 20px 0;
}

.adrRsltList .adrRsltItem:not(:last-of-type) {
    border-bottom: 1px solid #e1e1e1;
}

.adrRsltList .adrRsltItem:first-of-type {
    padding: 0 0 20px;
}

.adrRsltList .adrRsltItem .adrNum {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.adrRsltList .adrRsltItem .tagRow {
    margin-top: 8px;
    align-items: center;
    column-gap: 8px;
}

.adrRsltList .adrRsltItem .tagRow .tag {
    min-width: 50px;
}

.adrRsltList .adrRsltItem .tagRow > p {
    font-size: 18px;
    line-height: 28px;
    color: #444;
}

.infoBox .subInfo, .infoBox .subInfoBL {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.infoBox.agc .prodInfoText {
    display: inline-flex;
    font-weight: 400;
}

.bulletItem.ft14, .modalTable .ft14.tableBulletItem, .notiCon ul li.ft14, .acc-menu-cnt .txList03 li.ft14,
.acc-menu-cnt .txList05 li.ft14 {
    font-size: 14px;
    line-height: 24px;
}

.formWrap {
    padding: 40px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.formWrap .hyphen {
    flex: 0 0 auto;
    height: 1px;
    width: 6px;
    background: #909090;
}

.formWrap .formItemColFS {
    display: flex;
    gap: 20px;
}

.formWrap .inputUtil button {
    min-width: 120px;
}

.formWrap + .btnWrap .btnSt, .formWrap + .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .formWrap + .btnWrap a, .formWrap + .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .formWrap + .btnWrap .cart-btn, body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .formWrap + .btnWrap .cart-btn, .formWrap + .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .formWrap + .btnWrap .group-total-btn > a, .formWrap + .btnWrap body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .formWrap + .btnWrap .btn-primary, .formWrap + .btnWrap body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .formWrap + .btnWrap .btn-semi, .formWrap + .btnWrap body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .formWrap + .btnWrap .btn-outline-primary {
    flex: 0 0 300px;
}

.formItemColumn .selectItem + .textItem, .formItemColumn .selectCheckItem + .textItem {
    flex: 0 0 50%;
}

.formItemColumn .selectItem + .textInfo, .formItemColumn .selectCheckItem + .textInfo, .formItemColumn .selectItem + .textInfoBlue, .formItemColumn .selectCheckItem + .textInfoBlue, .formItemColumn .selectItem + .textInfoRed, .formItemColumn .selectCheckItem + .textInfoRed, .formItemColumn .selectItem + .textInfoBlack, .formItemColumn .selectCheckItem + .textInfoBlack, .formItemColumn .selectItem + .textInfoGray, .formItemColumn .selectCheckItem + .textInfoGray, .formItemColumn .selectItem + .textInfoBlNline, .formItemColumn .selectCheckItem + .textInfoBlNline {
    flex: 1 1 auto;
    width: 100%;
    margin-top: 0;
}

.formItemColumn .selectItem button[disabled], .formItemColumn .selectCheckItem button[disabled] {
    color: #909090;
    font-weight: 500;
    cursor: default;
}

.formItemColumn .selectItem button[disabled]:after, .formItemColumn .selectCheckItem button[disabled]:after {
    display: none;
}

.inputItemWrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.inputItemWrap .inputItem ~ .inputItem, .inputItemWrap .inputItemNline ~ .inputItem, .inputItemWrap .inputItem ~ .inputItemNline, .inputItemWrap .inputItemNline ~ .inputItemNline {
    margin-top: 8px;
}

.inputItemNline {
    align-items: center;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.inputItemNline input {
    padding: 0;
}

.inputItemNline input:read-only {
    font-weight: 500;
    color: #666 !important;
}

.inputItemNline .adreNotice {
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    color: #bfbfbf;
}

.textInfoBlNline {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #4130df;
    margin-top: 0;
}

.textInfoBlNline:before {
    width: 20px;
    height: 20px;
    background: url("../img/godo2023/ico_text_info_primary.svg") no-repeat center/contain;
}

.textInfoGray {
    justify-content: center;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    font-weight: 500;
}

input[type='password'] {
    font-size: 35px;
    font-weight: 500;
    letter-spacing: 3px;
}

.formWrap {
    position: relative;
}

.formWrap .useCard {
    position: absolute;
    left: 40px;
    top: 60px;
}

.formWrap .useCard + .formItemRow {
    margin-top: 0px;
}

.formWrap .useCard + .formItemRow .formItemColumn {
    margin-top: 38px;
}

.orderInfo {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.orderInfo > div {
    position: relative;
    width: 100%;
}

.orderInfo > div .arrLink:not(.arrLinkGray), .orderInfo > div .arrLinkGray:not(.arrLinkGray) {
    position: absolute;
    bottom: 0;
    right: 0;
}

.orderInfo > div .arrLinkGray {
    font-size: 16px;
    line-height: 26px;
    color: #909090;
}

.orderInfo > div .arrLinkGray:after {
    background-image: url("../img/godo2023/ico_link_arr_light_gray.svg");
}

.orderInfo .orderSubTit {
    min-height: 34px;
    font-size: 16px;
    line-height: 26px;
    color: #909090;
}

.orderInfo .orderSubTit em {
    color: #4130df;
}

.orderInfo .orderSubTit button::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(../img/godo2023/ico_store_arrow.svg) no-repeat;
    margin-left: 6px;
}

.orderMainTit {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.recommArea .adminArea img {
    height: 100%;
}

.orderNum {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 26px;
}

.orderNum > span {
    color: #666;
}

.orderNum .btnOrderNum {
    color: #444;
}

.btnOrderNum,
.btnPuStore {
    font-size: 16px;
    line-height: 26px;
}

.btnOrderNum {
    color: #444;
}

.btnPuStore {
    position: relative;
    margin-left: 10px;
    border-bottom: 1px solid #4130df;
    color: #4130df !important;
}

.btnPuStore::before {
    content: '';
    width: 1px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    background-color: #bfbfbf;
}

.orderDevice {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 28px 0;
}

.orderDevice .orderDvcItem {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.orderDevice .orderDvcItem .orderDvcImg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
}

.orderDevice .orderDvcItem .orderDvcImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.orderDevice .orderDvcItem .orderDvcDetail {
    width: 100%;
    max-width: 350px;
}

.orderDevice .orderDvcItem .orderDvcDetail .prd_name {
    font-size: 18px;
    font-weight: 700;
    line-height: 40px;
}

.orderDevice .orderDvcItem .orderDvcDetail .prd_num span {
    font-size: 18px;
    line-height: 28px;
}

.orderDevice .circleSwiperBtn {
    left: 28px;
    right: 28px;
    width: auto;
}

.orderDevice.omd .orderDvcItem {
    gap: 12px;
}

.orderDevice.omd .orderDvcItem .orderDvcImg {
    width: 140px;
    height: 140px;
}

.orderDevice.omd .orderDvcItem .orderDvcImg img {
    width: 120px;
    height: 120px;
}

.orderDevice.omd .orderDvcItem .orderDvcDetail {
    width: auto;
    max-width: none;
}

.orderDevice.omd .orderDvcItem .orderDvcDetail .prd_name {
    font-size: 18px;
    line-height: 28px;
}

.circleSwiperBtn {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0;
    display: flex;
    margin-top: 0;
    justify-content: space-between;
}

.orderDvcSwiper {
    position: relative;
    overflow: hidden;
}

.orderClub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 12px;
    padding: 40px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
}

.orderClub button,
.orderClub li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.orderClub button > .key,
.orderClub li > .key {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #909090;
}

.orderClub button > .value,
.orderClub li > .value {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000;
}

.modalSubTit {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: #000;
}

.noticeWrap .noticeList li button, .noticeWrap .noticeWrap li button {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    background-size: 16px 16px;
    background-position-x: calc(100% - 2px);
}

.noticeWrap .noticeList li.open button, .noticeWrap .noticeWrap li.open button {
    background-size: 16px 16px;
    background-position-x: calc(100% - 2px);
}

.noticeWrap.open > button {
    background: url(../img/godo2023/ico_accordian_arrow_on.svg) no-repeat right center;
}

.ntcAgreeBox {
    padding: 28px;
}

.ntcAgreeBox .noticeWrap button {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    background-size: 16px 16px;
}

.ntcAgreeBox .noticeWrap button em {
    color: #ff0000;
}

.notiCont {
    margin-top: 20px;
}

.notiCont > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.notiCont .mainTit {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000;
}

.agrLstTit {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #666;
    text-align: center;
}

.dt {
    margin-top: 40px;
}

.dd {
    padding: 28px;
}

.dd .agree-item {
    border: none;
    line-height: 28px;
}

.dd .agree-item .agree-title {
    padding: 0;
}

.dd .agree-item .agree-title .c-chk .label {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}

.dd .agree-item .agree-title .c-chk .label .text-primary {
    color: #ff0000 !important;
}

.dd .agree-item .btn-trigger {
    width: 20px;
    height: 20px;
}

.dd .agree-item .btn-trigger:before {
    width: 20px;
    height: 20px;
    background-image: url(../img/godo2023/ico_select_arr.svg);
    background-position: center;
}

.dd .agree-item.active .btn-trigger:before {
    transform: rotate(180deg);
}

.dd .agree-item.no-check .agree-detail {
    margin: 20px 0 0 0;
    padding: 0;
    font-size: 16px;
    line-height: 26px;
    max-height: inherit;
    margin-top: 20px;
    color: #666;
}

.modalContent .columnWrap {
    column-gap: 28px;
}

.modalContent .columnWrap .columnLeft {
    width: 168px;
    padding: 0;
}

.modalContent .columnWrap .columnRight {
    width: 440px;
    padding: 0;
    border: none;
}

.modalContent .columnWrap .columnRight > div {
    display: none;
}

[data-tab-cont='number'],
[data-tab-cont='device'] {
    margin-right: 20px;
}

[data-tab-cont='number'] > ul > li,
[data-tab-cont='number'] > ul > li > span,
[data-tab-cont='number'] > ul > li > ul > li,
[data-tab-cont='device'] > ul > li,
[data-tab-cont='device'] > ul > li > span,
[data-tab-cont='device'] > ul > li > ul > li {
    position: relative;
    padding-left: 11px;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 26px !important;
    color: #666 !important;
}

[data-tab-cont='number'] > ul > li:before,
[data-tab-cont='number'] > ul > li > span:before,
[data-tab-cont='number'] > ul > li > ul > li:before,
[data-tab-cont='device'] > ul > li:before,
[data-tab-cont='device'] > ul > li > span:before,
[data-tab-cont='device'] > ul > li > ul > li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #bfbfbf;
}

[data-tab-cont='number'] > ul > li > p > strong,
[data-tab-cont='number'] > ul > li > span > p > strong,
[data-tab-cont='number'] > ul > li > ul > li > p > strong,
[data-tab-cont='device'] > ul > li > p > strong,
[data-tab-cont='device'] > ul > li > span > p > strong,
[data-tab-cont='device'] > ul > li > ul > li > p > strong {
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 28px !important;
}

[data-tab-cont='number'] > ul > li:has(span),
[data-tab-cont='number'] > ul > li > span:has(span),
[data-tab-cont='number'] > ul > li > ul > li:has(span),
[data-tab-cont='device'] > ul > li:has(span),
[data-tab-cont='device'] > ul > li > span:has(span),
[data-tab-cont='device'] > ul > li > ul > li:has(span) {
    padding-left: 0px;
}

[data-tab-cont='number'] > ul > li:has(span)::before,
[data-tab-cont='number'] > ul > li > span:has(span)::before,
[data-tab-cont='number'] > ul > li > ul > li:has(span)::before,
[data-tab-cont='device'] > ul > li:has(span)::before,
[data-tab-cont='device'] > ul > li > span:has(span)::before,
[data-tab-cont='device'] > ul > li > ul > li:has(span)::before {
    content: none;
}

[data-tab-cont='number'] > ul > li .list,
[data-tab-cont='number'] > ul > li > span .list,
[data-tab-cont='number'] > ul > li > ul > li .list,
[data-tab-cont='device'] > ul > li .list,
[data-tab-cont='device'] > ul > li > span .list,
[data-tab-cont='device'] > ul > li > ul > li .list {
    margin-top: 20px;
}

[data-tab-cont='number'] > ul > li .list table,
[data-tab-cont='number'] > ul > li > span .list table,
[data-tab-cont='number'] > ul > li > ul > li .list table,
[data-tab-cont='device'] > ul > li .list table,
[data-tab-cont='device'] > ul > li > span .list table,
[data-tab-cont='device'] > ul > li > ul > li .list table {
    margin: 20px 0;
}

[data-tab-cont='number'] > ul > li .list table thead tr th,
[data-tab-cont='number'] > ul > li .list table thead tr td,
[data-tab-cont='number'] > ul > li > span .list table thead tr th,
[data-tab-cont='number'] > ul > li > span .list table thead tr td,
[data-tab-cont='number'] > ul > li > ul > li .list table thead tr th,
[data-tab-cont='number'] > ul > li > ul > li .list table thead tr td,
[data-tab-cont='device'] > ul > li .list table thead tr th,
[data-tab-cont='device'] > ul > li .list table thead tr td,
[data-tab-cont='device'] > ul > li > span .list table thead tr th,
[data-tab-cont='device'] > ul > li > span .list table thead tr td,
[data-tab-cont='device'] > ul > li > ul > li .list table thead tr th,
[data-tab-cont='device'] > ul > li > ul > li .list table thead tr td {
    padding: 12px 8px;
    border: 1px solid #e1e1e1 !important;
    background-color: #f7f7f7 !important;
    border-left: none !important;
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 13px;
    line-height: 23px;
}

[data-tab-cont='number'] > ul > li .list table thead tr th:last-child,
[data-tab-cont='number'] > ul > li .list table thead tr td:last-child,
[data-tab-cont='number'] > ul > li > span .list table thead tr th:last-child,
[data-tab-cont='number'] > ul > li > span .list table thead tr td:last-child,
[data-tab-cont='number'] > ul > li > ul > li .list table thead tr th:last-child,
[data-tab-cont='number'] > ul > li > ul > li .list table thead tr td:last-child,
[data-tab-cont='device'] > ul > li .list table thead tr th:last-child,
[data-tab-cont='device'] > ul > li .list table thead tr td:last-child,
[data-tab-cont='device'] > ul > li > span .list table thead tr th:last-child,
[data-tab-cont='device'] > ul > li > span .list table thead tr td:last-child,
[data-tab-cont='device'] > ul > li > ul > li .list table thead tr th:last-child,
[data-tab-cont='device'] > ul > li > ul > li .list table thead tr td:last-child {
    border-right: none !important;
}

[data-tab-cont='number'] > ul > li .list table thead tr th > p > strong,
[data-tab-cont='number'] > ul > li .list table thead tr td > p > strong,
[data-tab-cont='number'] > ul > li > span .list table thead tr th > p > strong,
[data-tab-cont='number'] > ul > li > span .list table thead tr td > p > strong,
[data-tab-cont='number'] > ul > li > ul > li .list table thead tr th > p > strong,
[data-tab-cont='number'] > ul > li > ul > li .list table thead tr td > p > strong,
[data-tab-cont='device'] > ul > li .list table thead tr th > p > strong,
[data-tab-cont='device'] > ul > li .list table thead tr td > p > strong,
[data-tab-cont='device'] > ul > li > span .list table thead tr th > p > strong,
[data-tab-cont='device'] > ul > li > span .list table thead tr td > p > strong,
[data-tab-cont='device'] > ul > li > ul > li .list table thead tr th > p > strong,
[data-tab-cont='device'] > ul > li > ul > li .list table thead tr td > p > strong {
    color: #666 !important;
    font-weight: 400 !important;
}

[data-tab-cont='number'] > ul > li .list table tbody tr th,
[data-tab-cont='number'] > ul > li > span .list table tbody tr th,
[data-tab-cont='number'] > ul > li > ul > li .list table tbody tr th,
[data-tab-cont='device'] > ul > li .list table tbody tr th,
[data-tab-cont='device'] > ul > li > span .list table tbody tr th,
[data-tab-cont='device'] > ul > li > ul > li .list table tbody tr th {
    border: 1px solid #e1e1e1 !important;
    background-color: #f7f7f7 !important;
    color: #666 !important;
    border-left: none !important;
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
}

[data-tab-cont='number'] > ul > li .list table tbody tr td,
[data-tab-cont='number'] > ul > li > span .list table tbody tr td,
[data-tab-cont='number'] > ul > li > ul > li .list table tbody tr td,
[data-tab-cont='device'] > ul > li .list table tbody tr td,
[data-tab-cont='device'] > ul > li > span .list table tbody tr td,
[data-tab-cont='device'] > ul > li > ul > li .list table tbody tr td {
    padding: 12px;
    border: 1px solid #e1e1e1 !important;
    color: #909090 !important;
    border-right: none !important;
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
}

[data-tab-cont='number'] > ul > li + li,
[data-tab-cont='number'] > ul > li > ul > li + li,
[data-tab-cont='device'] > ul > li + li,
[data-tab-cont='device'] > ul > li > ul > li + li {
    margin-top: 8px;
}

[data-tab-cont='number'] > ul > li > ul > li:first-child,
[data-tab-cont='device'] > ul > li > ul > li:first-child {
    padding-left: 0px;
}

[data-tab-cont='number'] > ul > li > ul > li:first-child::before,
[data-tab-cont='device'] > ul > li > ul > li:first-child::before {
    content: none;
}

[data-tab-cont='number'] > ul > li > ul > li:first-child > table + table,
[data-tab-cont='device'] > ul > li > ul > li:first-child > table + table {
    margin-top: -22px;
}

[data-tab-cont='number'] > ul > li.bulletItem.lg, .modalTable [data-tab-cont='number'] > ul > li.lg.tableBulletItem, .notiCon [data-tab-cont='number'] > ul > li.lg, .acc-menu-cnt .txList03 [data-tab-cont='number'] > ul > li.lg,
.acc-menu-cnt .txList05 [data-tab-cont='number'] > ul > li.lg,
[data-tab-cont='device'] > ul > li.bulletItem.lg,
.modalTable [data-tab-cont='device'] > ul > li.lg.tableBulletItem,
.notiCon [data-tab-cont='device'] > ul > li.lg,
.acc-menu-cnt .txList03 [data-tab-cont='device'] > ul > li.lg,
.acc-menu-cnt .txList05 [data-tab-cont='device'] > ul > li.lg {
    display: none;
}

[data-tab-cont='number'] > ul > li.bulletItem.lg::before, .modalTable [data-tab-cont='number'] > ul > li.lg.tableBulletItem::before, .notiCon [data-tab-cont='number'] > ul > li.lg::before, .acc-menu-cnt .txList03 [data-tab-cont='number'] > ul > li.lg::before,
.acc-menu-cnt .txList05 [data-tab-cont='number'] > ul > li.lg::before,
[data-tab-cont='device'] > ul > li.bulletItem.lg::before,
.modalTable [data-tab-cont='device'] > ul > li.lg.tableBulletItem::before,
.notiCon [data-tab-cont='device'] > ul > li.lg::before,
.acc-menu-cnt .txList03 [data-tab-cont='device'] > ul > li.lg::before,
.acc-menu-cnt .txList05 [data-tab-cont='device'] > ul > li.lg::before {
    content: none;
}

[data-tab-cont='number'] > ul > li:has(> p > strong),
[data-tab-cont='device'] > ul > li:has(> p > strong) {
    padding-left: 0px;
    margin-top: 40px;
}

[data-tab-cont='number'] > ul > li:has(> p > strong)::before,
[data-tab-cont='device'] > ul > li:has(> p > strong)::before {
    content: none;
}

[data-tab-cont='number'] > ul > li:has(> p > strong) strong,
[data-tab-cont='device'] > ul > li:has(> p > strong) strong {
    color: #000;
}

[data-tab-cont='number'] > ul > li > p > span,
[data-tab-cont='device'] > ul > li > p > span {
    color: #666 !important;
    font-size: 16px !important;
    line-height: 26px !important;
}

[data-tab-cont='number'] > ul br,
[data-tab-cont='device'] > ul br {
    display: none;
}

.tabList {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.tabList .tabItem {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #444;
    cursor: pointer;
    background: url("../img/godo2023/ico_link_arr_gray.svg") no-repeat right center;
}

.tabList .tabItem:has(input:checked) {
    color: #4130df;
    background: url("../img/godo2023/ico_link_arr.svg") no-repeat no-repeat right center;
}

.tabRadioLink {
    display: block;
    width: 100%;
    cursor: pointer;
}

.tabRadioLink input {
    position: absolute;
    left: 0;
    opacity: 0;
}

.tabMainTit {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.labelWrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

.labelRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.btnRadio .labelRow:last-child {
    width: calc(100% + 54px);
    margin-left: -27px;
    margin-top: 28px;
}

.labelColumn {
    display: flex;
    flex-direction: column;
}

.labelColumn > .fcR70 {
    font-weight: 400;
    font-size: 18px;
    font-weight: 500;
    line-height: 33px;
}

.labelColumn > .fcR70 > strong {
    font-size: 22px;
    font-weight: 700;
    line-height: 33px;
    vertical-align: -1px;
}

.noticeTxt {
    width: 100%;
    padding: 12px 28px;
    font-size: 13px;
    line-height: 20px;
    color: #909090;
    background-color: #f7f7f7;
    font-weight: 400;
}

.agreeNotice {
    max-height: 200px;
    overflow-y: scroll;
    margin-bottom: 40px;
    margin-right: 4px;
}

.agreeNotice ul li {
    display: block !important;
}

.agreeNotice ul li span {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}

.agreeNotice ul li p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.cardBadge ~ .bdge {
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 4px;
}

.distColumn, .distRow {
    margin-top: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.distColumn.disabled, .disabled.distRow {
    color: #bfbfbf;
}

.distColumn.disabled .fcB100, .disabled.distRow .fcB100 {
    color: #bfbfbf !important;
}

.distRow {
    flex-direction: row;
}

.distDesc {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: #909090;
    margin-top: 8px;
}

.distRegisBtn {
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    border: 1px solid #909090;
    border-radius: 4px;
    color: #666;
}

.distCardBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.distCardBox:not(:first-child) {
    border-left: 1px solid #efefef;
}

.distCardBox .distCardInfo {
    display: flex;
    align-items: center;
}

.distCardBox .distCardInfo .name {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.distCardBox .type {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.distCardImg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
}

.distCardImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.distCardImg button {
    width: 100%;
    height: 60px;
    border: 1px dashed #8d83ec;
    border-radius: 4px;
    background: url(../img/godo2023/ico_plus_blue.svg) no-repeat center center;
    background-color: #f5f4fc;
    text-indent: -9999px;
}

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

.btnCloseWrap span {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #ff4d4d;
}

.btnCloseWrap span strong {
    font-weight: 700;
}

.btnCloseWrap button {
    width: 20px;
    height: 20px;
}

.emsList .desc strong {
    font-weight: 700;
    color: #4130df;
}

.headerStepPS {
    justify-content: center;
}

.headerStepPS li {
    padding: 0 20px;
    min-width: 60px;
}

.headerStepPS li span {
    font-size: 14px;
    line-height: 24px;
}

.psppInfo {
    padding: 0 28px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.psppInfo ul {
    padding: 28px 0;
}

.psppInfo ul:not(:last-child) {
    border-bottom: 1px solid #e1e1e1;
}

.psppInfo ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.psppInfo ul li ~ li {
    margin-top: 12px;
}

.psppInfo ul li span {
    font-size: 18px;
    line-height: 28px;
}

.psppInfo ul li .key {
    color: #444;
}

.psppInfo ul li .value {
    font-weight: 500;
    color: #000;
}

.textSubInfo {
    font-size: 13px;
    font-weight: 500;
    line-height: 23px;
    color: #909090;
    margin-top: 4px;
}

.modalTable .tableBulletItem {
    font-size: 13px;
    line-height: 23px;
}

.modalTable .tableBulletItem + .tableBulletItem {
    margin-top: 4px;
}

.descText {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.revBox {
    max-height: 500px;
    overflow-y: scroll;
}

.revWrap {
    display: flex;
    align-items: flex-start;
    column-gap: 40px;
}

.revWrap .revLeft {
    position: sticky;
    top: 0;
    left: 0;
    flex: 0 0 320px;
}

.bigThumb {
    width: 320px;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f7f7f7;
}

.bigThumb video,
.bigThumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.smThumbWrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 12px;
}

.smThumbWrap .smThumb {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    box-sizing: border-box;
    overflow: hidden;
}

.smThumbWrap .smThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smThumbWrap .smThumb.video::before {
    content: '비디오';
    position: absolute;
    top: calc(50% - 16px);
    left: calc(50% - 16px);
    display: block;
    width: 32px;
    height: 32px;
    background: url(../img/godo2023/ico_play.svg) no-repeat center center;
    background-size: 32px 32px;
    text-indent: -999px;
    overflow: hidden;
}

.smThumbWrap .smThumb.on::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 2px solid #4130df;
    border-radius: 4px;
    overflow: hidden;
}

.revwDetail {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #909090;
    word-break: break-word;
}

.revRight .date {
    display: flex;
    column-gap: 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
}

.revRight .date > span {
    position: relative;
}

.revRight .date > span:nth-child(n + 2):after {
    position: absolute;
    top: calc(50% - 6px);
    left: -12px;
    content: '';
    pointer-events: none;
    height: 11px;
    width: 1px;
    background: #bfbfbf;
}

.revRight .option {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    color: #000;
}

.revAnsr {
    display: none;
    width: 100%;
    padding: 28px;
    background-color: #f7f7f7;
    border-radius: 8px;
}

.revAnsr > span {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    color: #000;
}

.revAnsr > p {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #909090;
    word-break: break-word;
}

.revAnsr.on {
    display: block;
}

.devInfo {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.devInfo li {
    display: flex;
    justify-content: space-between;
}

.devInfo li .key {
    font-weight: 400;
    color: #666;
    font-size: 16px;
}

.devInfo li .value {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000;
}

.gradeTit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gradeTit > span {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: #000;
}

.gradeTit > p .desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #666;
}

.gradeTit > p .price {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #ff4d4d;
    margin-left: 8px;
}

.gradeTit > p .price em {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.gradeTit > p .price strong {
    color: #000;
}

.gradeInfo {
    margin-top: 20px;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

.gradeInfo > span {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.gradeInfo > ul {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.gradeInfo > ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.gradeInfo > ul li::before {
    top: 12px;
}

.prodDesc {
    display: flex;
    flex-direction: column;
    flex: 0 0 660px;
    overflow: hidden;
}

.prodDesc .puWrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
}

.prodDesc .puWrap + .tit {
    margin-top: 4px;
}

.prodDesc .textInfoRed {
    margin-top: 0;
    align-items: baseline;
}

.prodDesc .textInfoRed + .tit {
    margin-top: 4px;
}

.prodDesc .textInfoRed:before {
    height: 26px;
}

.prodDesc > .tit {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 660px;
}

.prodDesc .detail {
    margin-top: 20px;
    display: flex;
    column-gap: 40px;
    min-height: 98px;
    justify-content: space-between;
}

.prodDesc .detail > li {
    display: flex;
    flex-direction: column;
    flex: 0 0 175px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
    white-space: nowrap;
}

.prodDesc .detail > li.device .price, .prodDesc .detail > li.plan .price {
    margin-top: 12px;
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 400;
}

.prodDesc .detail > li.device .price strong, .prodDesc .detail > li.plan .price strong {
    font-size: 16px;
    line-height: 26px;
}

.prodDesc .detail > li.device .payName, .prodDesc .detail > li.plan .payName {
    margin-top: 4px;
}

.prodDesc .detail > li.device .subPrice, .prodDesc .detail > li.plan .subPrice {
    position: relative;
    width: fit-content;
    color: #909090;
    font-size: 12px;
    line-height: 12px;
}

.prodDesc .detail > li.device .subPrice em, .prodDesc .detail > li.plan .subPrice em {
    font-size: 14px;
    line-height: 24px;
}

.prodDesc .detail > li.device .subPrice::after, .prodDesc .detail > li.plan .subPrice::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #909090;
}

.prodDesc .detail > li > .price,
.prodDesc .detail > li > .subPrice {
    display: flex;
    align-items: center;
    column-gap: 2px;
}

.prodDesc .detail .device > ul {
    display: flex;
    column-gap: 24px;
}

.prodDesc .detail .device > ul li {
    position: relative;
}

.prodDesc .detail .device > ul li + li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -12px;
    width: 1px;
    height: 11px;
    background-color: #bfbfbf;
}

.prodDesc .detail .result {
    position: relative;
    text-align: right;
}

.prodDesc .detail .result .price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 4px;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: #ff4d4d;
}

.prodDesc .detail .result .price strong {
    font-size: 26px;
    line-height: 40px;
}

.prodDesc .detail .result .arrLink, .prodDesc .detail .result .arrLinkGray {
    position: absolute;
    bottom: 1px;
    right: 0;
}

.bulletWrap {
    display: flex;
    justify-content: flex-end;
}

.cartDtWrap {
    padding: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.cartDtWrap > li {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #efefef;
}

.cartDtWrap > li:first-child {
    padding: 0 0 20px;
}

.cartDtWrap > li:last-child {
    padding: 20px 0 0;
    border-bottom: none;
}

.cartDtWrap > li span {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.cartDtWrap .key {
    color: #666;
}

.cartDtWrap .value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.cartDtWrap .subPrice {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    color: #909090;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.cartDtWrap .subPrice em {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.cartDtWrap .subPrice::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #909090;
}

.cartDtWrap .price {
    display: flex;
    align-items: center;
    color: #ff4d4d;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.cartDtWrap .price strong {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.cartDtWrap .txt {
    color: #444;
}

.depth3Nline > li > .tit::before {
    color: #fff !important;
}

.infoBox .subInfoList {
    margin-top: 12px;
}

.infoBox .subInfoList .subInfoItem {
    position: relative;
    font-size: 16px;
    line-height: 26px;
}

.infoBox .subInfoList .subInfoItem.subInfoItemFit {
    width: fit-content;
    margin: 0 auto;
}

.infoBox .subInfoList .subInfoItem::before {
    content: '';
    position: absolute;
    top: 11.5px;
    left: -11px;
    display: inline-block;
    width: 3px;
    height: 3px;
    background: #000;
    border-radius: 10px;
}

.infoBox .subInfoBL {
    color: #4130df;
    font-weight: 700;
}

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

.subHdTit li {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    padding: 0 12px;
    column-gap: 4px;
}

.subHdTit li + li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 20px;
    margin-top: -9px;
    background: #e1e1e1;
}

.subHdTit li em {
    font-weight: 700;
}

.subHdTit li strong.fcR70 {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    column-gap: 2px;
}

.subHdTit li strong.fcR70 em {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
}

.subHdTit li:first-child {
    padding: 0 12px 0 0;
}

.insChrBox {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
}

.insChrBox ul {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    padding: 28px;
}

.insChrBox ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.insChrBox ul li .key {
    color: #666;
}

.insChrBox ul li .value {
    display: flex;
    align-items: center;
    column-gap: 2px;
    color: #444;
}

.insChrBox .total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 28px;
    background-color: #f7f7f7;
}

.insChrBox .total .key {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.insChrBox .total .value {
    display: flex;
    align-items: center;
    column-gap: 2px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.bulletSubTit {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.bulletSubTit + .bulletList, .notiCon .bulletSubTit + ul, .acc-menu-cnt .bulletSubTit + .txList03,
.acc-menu-cnt .bulletSubTit + .txList05 {
    margin-top: 8px;
}

/*
조미현 S ---------------------------------------------------------------------------------------------------------------------------------------------------
*/
.tGiftSelect {
    display: flex;
    align-items: center;
    gap: 40px;
}

.tGiftSelect .tit {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.tGiftSelect .selectItem, .tGiftSelect .selectCheckItem {
    margin-top: 20px;
    width: 100%;
}

.tGiftSelect .left .imgBox {
    width: 120px;
    height: 120px;
}

.tGiftSelect .right {
    flex: 1 1 auto;
}

.tGiftSelect .right .flexEndBox {
    column-gap: 28px;
}

.imgSwiper {
    position: relative;
    /*.circleSwiperBtn {
    margin-left: -40px;
    margin-right: -40px;
  }*/
}

.imgSwiper.tdaSwiper .swiperNaviSticky {
    position: absolute;
    top: 50%;
}

.imgSwiper.tdaSwiper .swiperNaviSticky .swiperNavigation {
    bottom: initial;
    transform: none;
}

.tGiftDetailItem,
.tdaDetailItem {
    flex: 1 1 auto;
    position: relative;
    padding: 1px;
    max-width: 620px;
}

.tGiftDetailItem .imgBox img,
.tdaDetailItem .imgBox img {
    max-width: 100%;
}

.swiperButtonPrev.circle,
.swiperButtonNext.circle {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #efefef;
    border-radius: 50%;
    filter: drop-shadow(0 2px 9px rgba(0, 0, 0, 0.08));
    box-sizing: border-box;
}

.swiperButtonPrev.circle::before,
.swiperButtonNext.circle::before {
    top: calc(50% - 8px);
    left: calc(50% - 4px);
    height: 15px;
    width: 15px;
}

.swiperButtonNext.circle::before {
    right: calc(50% - 4px);
    transform: rotate(135deg);
    left: auto;
}

.swiperNaviSticky {
    z-index: 5;
    position: sticky;
    top: calc(50% + 150px);
    left: 0;
    right: 0;
    height: 0;
    margin: 0 -20px;
}

.swiperNaviSticky .swiperNavigation {
    position: absolute;
    top: auto;
    bottom: 150px;
    margin-top: 0;
    width: 100%;
    display: flex;
    transform: translateY(-10px);
    justify-content: space-between;
}

.noticeBtn {
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: #000;
    background: url(../img/godo2023/ico_arr_lg.svg) no-repeat right center;
}

.tBenfSection {
    margin-bottom: 60px;
}

.tBenfSection .subTitle.mt60 {
    margin-top: 0px !important;
}

.noticeList > li + li, .noticeWrap > li + li {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}

.noticeList > li.open [data-acd-btn], .noticeWrap > li.open [data-acd-btn] {
    background: url(../img/godo2023/ico_accordian_arrow_on.svg) no-repeat right center;
}

.noticeList > li.disabled .btn, .noticeWrap > li.disabled .btn {
    background: url(../img/godo2023/ico_agree_arr_gray.svg) no-repeat right center;
    background-size: 21px 32px;
    color: #bfbfbf;
}

.noticeList > li.disabled.open .btn, .noticeWrap > li.disabled.open .btn {
    background: url(../img/godo2023/ico_agree_arr_gray_on.svg) no-repeat right center;
    background-size: 21px 32px;
}

.noticeList .btn, .noticeWrap .btn {
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    background: url(../img/godo2023/ico_accordian_arrow.svg) no-repeat right center;
}

.noticeList .subTitle, .noticeWrap .subTitle {
    font-size: 18px;
    line-height: 28px;
}

.noticeList .bulletList .bulletItem + .bulletItem, .noticeWrap .bulletList .bulletItem + .bulletItem, .noticeList .notiCon ul .bulletItem + .bulletItem, .notiCon .noticeList ul .bulletItem + .bulletItem, .noticeWrap .notiCon ul .bulletItem + .bulletItem, .notiCon .noticeWrap ul .bulletItem + .bulletItem, .noticeList .acc-menu-cnt .txList03 .bulletItem + .bulletItem, .acc-menu-cnt .noticeList .txList03 .bulletItem + .bulletItem, .noticeWrap .acc-menu-cnt .txList03 .bulletItem + .bulletItem, .acc-menu-cnt .noticeWrap .txList03 .bulletItem + .bulletItem, .noticeList .acc-menu-cnt .txList05 .bulletItem + .bulletItem, .acc-menu-cnt .noticeList .txList05 .bulletItem + .bulletItem, .noticeWrap .acc-menu-cnt .txList05 .bulletItem + .bulletItem, .acc-menu-cnt .noticeWrap .txList05 .bulletItem + .bulletItem, .noticeList .bulletList .modalTable .tableBulletItem + .bulletItem, .modalTable .noticeList .bulletList .tableBulletItem + .bulletItem, .noticeWrap .bulletList .modalTable .tableBulletItem + .bulletItem, .modalTable .noticeWrap .bulletList .tableBulletItem + .bulletItem, .noticeList .notiCon ul .modalTable .tableBulletItem + .bulletItem, .modalTable .noticeList .notiCon ul .tableBulletItem + .bulletItem, .notiCon .noticeList ul .modalTable .tableBulletItem + .bulletItem, .modalTable .notiCon .noticeList ul .tableBulletItem + .bulletItem, .noticeWrap .notiCon ul .modalTable .tableBulletItem + .bulletItem, .modalTable .noticeWrap .notiCon ul .tableBulletItem + .bulletItem, .notiCon .noticeWrap ul .modalTable .tableBulletItem + .bulletItem, .modalTable .notiCon .noticeWrap ul .tableBulletItem + .bulletItem, .noticeList .acc-menu-cnt .txList03 .modalTable .tableBulletItem + .bulletItem, .modalTable .noticeList .acc-menu-cnt .txList03 .tableBulletItem + .bulletItem, .acc-menu-cnt .noticeList .txList03 .modalTable .tableBulletItem + .bulletItem, .modalTable .acc-menu-cnt .noticeList .txList03 .tableBulletItem + .bulletItem, .noticeWrap .acc-menu-cnt .txList03 .modalTable .tableBulletItem + .bulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList03 .tableBulletItem + .bulletItem, .acc-menu-cnt .noticeWrap .txList03 .modalTable .tableBulletItem + .bulletItem, .modalTable .acc-menu-cnt .noticeWrap .txList03 .tableBulletItem + .bulletItem, .noticeList .acc-menu-cnt .txList05 .modalTable .tableBulletItem + .bulletItem, .modalTable .noticeList .acc-menu-cnt .txList05 .tableBulletItem + .bulletItem, .acc-menu-cnt .noticeList .txList05 .modalTable .tableBulletItem + .bulletItem, .modalTable .acc-menu-cnt .noticeList .txList05 .tableBulletItem + .bulletItem, .noticeWrap .acc-menu-cnt .txList05 .modalTable .tableBulletItem + .bulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList05 .tableBulletItem + .bulletItem, .acc-menu-cnt .noticeWrap .txList05 .modalTable .tableBulletItem + .bulletItem, .modalTable .acc-menu-cnt .noticeWrap .txList05 .tableBulletItem + .bulletItem, .noticeList .bulletList .notiCon ul li + .bulletItem, .notiCon ul .noticeList .bulletList li + .bulletItem, .noticeWrap .bulletList .notiCon ul li + .bulletItem, .notiCon ul .noticeWrap .bulletList li + .bulletItem, .noticeList .notiCon ul li + .bulletItem, .notiCon .noticeList ul li + .bulletItem, .noticeWrap .notiCon ul li + .bulletItem, .notiCon .noticeWrap ul li + .bulletItem, .noticeList .acc-menu-cnt .txList03 .notiCon ul li + .bulletItem, .notiCon ul .noticeList .acc-menu-cnt .txList03 li + .bulletItem, .acc-menu-cnt .noticeList .txList03 .notiCon ul li + .bulletItem, .notiCon ul .acc-menu-cnt .noticeList .txList03 li + .bulletItem, .noticeWrap .acc-menu-cnt .txList03 .notiCon ul li + .bulletItem, .notiCon ul .noticeWrap .acc-menu-cnt .txList03 li + .bulletItem, .acc-menu-cnt .noticeWrap .txList03 .notiCon ul li + .bulletItem, .notiCon ul .acc-menu-cnt .noticeWrap .txList03 li + .bulletItem, .noticeList .acc-menu-cnt .txList05 .notiCon ul li + .bulletItem, .notiCon ul .noticeList .acc-menu-cnt .txList05 li + .bulletItem, .acc-menu-cnt .noticeList .txList05 .notiCon ul li + .bulletItem, .notiCon ul .acc-menu-cnt .noticeList .txList05 li + .bulletItem, .noticeWrap .acc-menu-cnt .txList05 .notiCon ul li + .bulletItem, .notiCon ul .noticeWrap .acc-menu-cnt .txList05 li + .bulletItem, .acc-menu-cnt .noticeWrap .txList05 .notiCon ul li + .bulletItem, .notiCon ul .acc-menu-cnt .noticeWrap .txList05 li + .bulletItem, .noticeList .bulletList .acc-menu-cnt .txList03 li + .bulletItem, .acc-menu-cnt .txList03 .noticeList .bulletList li + .bulletItem, .noticeWrap .bulletList .acc-menu-cnt .txList03 li + .bulletItem, .acc-menu-cnt .txList03 .noticeWrap .bulletList li + .bulletItem, .noticeList .notiCon ul .acc-menu-cnt .txList03 li + .bulletItem, .acc-menu-cnt .txList03 .noticeList .notiCon ul li + .bulletItem, .notiCon .noticeList ul .acc-menu-cnt .txList03 li + .bulletItem, .acc-menu-cnt .txList03 .notiCon .noticeList ul li + .bulletItem, .noticeWrap .notiCon ul .acc-menu-cnt .txList03 li + .bulletItem, .acc-menu-cnt .txList03 .noticeWrap .notiCon ul li + .bulletItem, .notiCon .noticeWrap ul .acc-menu-cnt .txList03 li + .bulletItem, .acc-menu-cnt .txList03 .notiCon .noticeWrap ul li + .bulletItem, .noticeList .acc-menu-cnt .txList03 li + .bulletItem, .acc-menu-cnt .noticeList .txList03 li + .bulletItem, .noticeWrap .acc-menu-cnt .txList03 li + .bulletItem, .acc-menu-cnt .noticeWrap .txList03 li + .bulletItem, .noticeList .acc-menu-cnt .txList05 .txList03 li + .bulletItem, .noticeList .acc-menu-cnt .txList03 .txList05 li + .bulletItem, .acc-menu-cnt .noticeList .txList05 .txList03 li + .bulletItem, .acc-menu-cnt .txList03 .noticeList .txList05 li + .bulletItem, .noticeWrap .acc-menu-cnt .txList05 .txList03 li + .bulletItem, .noticeWrap .acc-menu-cnt .txList03 .txList05 li + .bulletItem, .acc-menu-cnt .noticeWrap .txList05 .txList03 li + .bulletItem, .acc-menu-cnt .txList03 .noticeWrap .txList05 li + .bulletItem, .noticeList .bulletList .acc-menu-cnt .txList05 li + .bulletItem, .acc-menu-cnt .txList05 .noticeList .bulletList li + .bulletItem, .noticeWrap .bulletList .acc-menu-cnt .txList05 li + .bulletItem, .acc-menu-cnt .txList05 .noticeWrap .bulletList li + .bulletItem, .noticeList .notiCon ul .acc-menu-cnt .txList05 li + .bulletItem, .acc-menu-cnt .txList05 .noticeList .notiCon ul li + .bulletItem, .notiCon .noticeList ul .acc-menu-cnt .txList05 li + .bulletItem, .acc-menu-cnt .txList05 .notiCon .noticeList ul li + .bulletItem, .noticeWrap .notiCon ul .acc-menu-cnt .txList05 li + .bulletItem, .acc-menu-cnt .txList05 .noticeWrap .notiCon ul li + .bulletItem, .notiCon .noticeWrap ul .acc-menu-cnt .txList05 li + .bulletItem, .acc-menu-cnt .txList05 .notiCon .noticeWrap ul li + .bulletItem, .noticeList .acc-menu-cnt .txList03 .txList05 li + .bulletItem, .noticeList .acc-menu-cnt .txList05 .txList03 li + .bulletItem, .acc-menu-cnt .noticeList .txList03 .txList05 li + .bulletItem, .acc-menu-cnt .txList05 .noticeList .txList03 li + .bulletItem, .noticeWrap .acc-menu-cnt .txList03 .txList05 li + .bulletItem, .noticeWrap .acc-menu-cnt .txList05 .txList03 li + .bulletItem, .acc-menu-cnt .noticeWrap .txList03 .txList05 li + .bulletItem, .acc-menu-cnt .txList05 .noticeWrap .txList03 li + .bulletItem, .noticeList .acc-menu-cnt .txList05 li + .bulletItem, .acc-menu-cnt .noticeList .txList05 li + .bulletItem, .noticeWrap .acc-menu-cnt .txList05 li + .bulletItem, .acc-menu-cnt .noticeWrap .txList05 li + .bulletItem, .noticeList .bulletList .modalTable .bulletItem + .tableBulletItem, .modalTable .noticeList .bulletList .bulletItem + .tableBulletItem, .noticeWrap .bulletList .modalTable .bulletItem + .tableBulletItem, .modalTable .noticeWrap .bulletList .bulletItem + .tableBulletItem, .noticeList .notiCon ul .modalTable .bulletItem + .tableBulletItem, .modalTable .noticeList .notiCon ul .bulletItem + .tableBulletItem, .notiCon .noticeList ul .modalTable .bulletItem + .tableBulletItem, .modalTable .notiCon .noticeList ul .bulletItem + .tableBulletItem, .noticeWrap .notiCon ul .modalTable .bulletItem + .tableBulletItem, .modalTable .noticeWrap .notiCon ul .bulletItem + .tableBulletItem, .notiCon .noticeWrap ul .modalTable .bulletItem + .tableBulletItem, .modalTable .notiCon .noticeWrap ul .bulletItem + .tableBulletItem, .noticeList .acc-menu-cnt .txList03 .modalTable .bulletItem + .tableBulletItem, .modalTable .noticeList .acc-menu-cnt .txList03 .bulletItem + .tableBulletItem, .acc-menu-cnt .noticeList .txList03 .modalTable .bulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .noticeList .txList03 .bulletItem + .tableBulletItem, .noticeWrap .acc-menu-cnt .txList03 .modalTable .bulletItem + .tableBulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList03 .bulletItem + .tableBulletItem, .acc-menu-cnt .noticeWrap .txList03 .modalTable .bulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .noticeWrap .txList03 .bulletItem + .tableBulletItem, .noticeList .acc-menu-cnt .txList05 .modalTable .bulletItem + .tableBulletItem, .modalTable .noticeList .acc-menu-cnt .txList05 .bulletItem + .tableBulletItem, .acc-menu-cnt .noticeList .txList05 .modalTable .bulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .noticeList .txList05 .bulletItem + .tableBulletItem, .noticeWrap .acc-menu-cnt .txList05 .modalTable .bulletItem + .tableBulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList05 .bulletItem + .tableBulletItem, .acc-menu-cnt .noticeWrap .txList05 .modalTable .bulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .noticeWrap .txList05 .bulletItem + .tableBulletItem, .noticeList .bulletList .modalTable .tableBulletItem + .tableBulletItem, .modalTable .noticeList .bulletList .tableBulletItem + .tableBulletItem, .noticeWrap .bulletList .modalTable .tableBulletItem + .tableBulletItem, .modalTable .noticeWrap .bulletList .tableBulletItem + .tableBulletItem, .noticeList .notiCon ul .modalTable .tableBulletItem + .tableBulletItem, .modalTable .noticeList .notiCon ul .tableBulletItem + .tableBulletItem, .notiCon .noticeList ul .modalTable .tableBulletItem + .tableBulletItem, .modalTable .notiCon .noticeList ul .tableBulletItem + .tableBulletItem, .noticeWrap .notiCon ul .modalTable .tableBulletItem + .tableBulletItem, .modalTable .noticeWrap .notiCon ul .tableBulletItem + .tableBulletItem, .notiCon .noticeWrap ul .modalTable .tableBulletItem + .tableBulletItem, .modalTable .notiCon .noticeWrap ul .tableBulletItem + .tableBulletItem, .noticeList .acc-menu-cnt .txList03 .modalTable .tableBulletItem + .tableBulletItem, .modalTable .noticeList .acc-menu-cnt .txList03 .tableBulletItem + .tableBulletItem, .acc-menu-cnt .noticeList .txList03 .modalTable .tableBulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .noticeList .txList03 .tableBulletItem + .tableBulletItem, .noticeWrap .acc-menu-cnt .txList03 .modalTable .tableBulletItem + .tableBulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList03 .tableBulletItem + .tableBulletItem, .acc-menu-cnt .noticeWrap .txList03 .modalTable .tableBulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .noticeWrap .txList03 .tableBulletItem + .tableBulletItem, .noticeList .acc-menu-cnt .txList05 .modalTable .tableBulletItem + .tableBulletItem, .modalTable .noticeList .acc-menu-cnt .txList05 .tableBulletItem + .tableBulletItem, .acc-menu-cnt .noticeList .txList05 .modalTable .tableBulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .noticeList .txList05 .tableBulletItem + .tableBulletItem, .noticeWrap .acc-menu-cnt .txList05 .modalTable .tableBulletItem + .tableBulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList05 .tableBulletItem + .tableBulletItem, .acc-menu-cnt .noticeWrap .txList05 .modalTable .tableBulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .noticeWrap .txList05 .tableBulletItem + .tableBulletItem, .noticeList .bulletList .notiCon ul .modalTable li + .tableBulletItem, .modalTable .noticeList .bulletList .notiCon ul li + .tableBulletItem, .notiCon ul .noticeList .bulletList .modalTable li + .tableBulletItem, .modalTable .notiCon ul .noticeList .bulletList li + .tableBulletItem, .noticeWrap .bulletList .notiCon ul .modalTable li + .tableBulletItem, .modalTable .noticeWrap .bulletList .notiCon ul li + .tableBulletItem, .notiCon ul .noticeWrap .bulletList .modalTable li + .tableBulletItem, .modalTable .notiCon ul .noticeWrap .bulletList li + .tableBulletItem, .noticeList .notiCon ul .modalTable li + .tableBulletItem, .modalTable .noticeList .notiCon ul li + .tableBulletItem, .notiCon .noticeList ul .modalTable li + .tableBulletItem, .modalTable .notiCon .noticeList ul li + .tableBulletItem, .noticeWrap .notiCon ul .modalTable li + .tableBulletItem, .modalTable .noticeWrap .notiCon ul li + .tableBulletItem, .notiCon .noticeWrap ul .modalTable li + .tableBulletItem, .modalTable .notiCon .noticeWrap ul li + .tableBulletItem, .noticeList .acc-menu-cnt .txList03 .notiCon ul .modalTable li + .tableBulletItem, .modalTable .noticeList .acc-menu-cnt .txList03 .notiCon ul li + .tableBulletItem, .notiCon ul .noticeList .acc-menu-cnt .txList03 .modalTable li + .tableBulletItem, .modalTable .notiCon ul .noticeList .acc-menu-cnt .txList03 li + .tableBulletItem, .acc-menu-cnt .noticeList .txList03 .notiCon ul .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .noticeList .txList03 .notiCon ul li + .tableBulletItem, .notiCon ul .acc-menu-cnt .noticeList .txList03 .modalTable li + .tableBulletItem, .modalTable .notiCon ul .acc-menu-cnt .noticeList .txList03 li + .tableBulletItem, .noticeWrap .acc-menu-cnt .txList03 .notiCon ul .modalTable li + .tableBulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList03 .notiCon ul li + .tableBulletItem, .notiCon ul .noticeWrap .acc-menu-cnt .txList03 .modalTable li + .tableBulletItem, .modalTable .notiCon ul .noticeWrap .acc-menu-cnt .txList03 li + .tableBulletItem, .acc-menu-cnt .noticeWrap .txList03 .notiCon ul .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .noticeWrap .txList03 .notiCon ul li + .tableBulletItem, .notiCon ul .acc-menu-cnt .noticeWrap .txList03 .modalTable li + .tableBulletItem, .modalTable .notiCon ul .acc-menu-cnt .noticeWrap .txList03 li + .tableBulletItem, .noticeList .acc-menu-cnt .txList05 .notiCon ul .modalTable li + .tableBulletItem, .modalTable .noticeList .acc-menu-cnt .txList05 .notiCon ul li + .tableBulletItem, .notiCon ul .noticeList .acc-menu-cnt .txList05 .modalTable li + .tableBulletItem, .modalTable .notiCon ul .noticeList .acc-menu-cnt .txList05 li + .tableBulletItem, .acc-menu-cnt .noticeList .txList05 .notiCon ul .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .noticeList .txList05 .notiCon ul li + .tableBulletItem, .notiCon ul .acc-menu-cnt .noticeList .txList05 .modalTable li + .tableBulletItem, .modalTable .notiCon ul .acc-menu-cnt .noticeList .txList05 li + .tableBulletItem, .noticeWrap .acc-menu-cnt .txList05 .notiCon ul .modalTable li + .tableBulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList05 .notiCon ul li + .tableBulletItem, .notiCon ul .noticeWrap .acc-menu-cnt .txList05 .modalTable li + .tableBulletItem, .modalTable .notiCon ul .noticeWrap .acc-menu-cnt .txList05 li + .tableBulletItem, .acc-menu-cnt .noticeWrap .txList05 .notiCon ul .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .noticeWrap .txList05 .notiCon ul li + .tableBulletItem, .notiCon ul .acc-menu-cnt .noticeWrap .txList05 .modalTable li + .tableBulletItem, .modalTable .notiCon ul .acc-menu-cnt .noticeWrap .txList05 li + .tableBulletItem, .noticeList .bulletList .acc-menu-cnt .txList03 .modalTable li + .tableBulletItem, .modalTable .noticeList .bulletList .acc-menu-cnt .txList03 li + .tableBulletItem, .acc-menu-cnt .txList03 .noticeList .bulletList .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList03 .noticeList .bulletList li + .tableBulletItem, .noticeWrap .bulletList .acc-menu-cnt .txList03 .modalTable li + .tableBulletItem, .modalTable .noticeWrap .bulletList .acc-menu-cnt .txList03 li + .tableBulletItem, .acc-menu-cnt .txList03 .noticeWrap .bulletList .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList03 .noticeWrap .bulletList li + .tableBulletItem, .noticeList .notiCon ul .acc-menu-cnt .txList03 .modalTable li + .tableBulletItem, .modalTable .noticeList .notiCon ul .acc-menu-cnt .txList03 li + .tableBulletItem, .acc-menu-cnt .txList03 .noticeList .notiCon ul .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList03 .noticeList .notiCon ul li + .tableBulletItem, .notiCon .noticeList ul .acc-menu-cnt .txList03 .modalTable li + .tableBulletItem, .modalTable .notiCon .noticeList ul .acc-menu-cnt .txList03 li + .tableBulletItem, .acc-menu-cnt .txList03 .notiCon .noticeList ul .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList03 .notiCon .noticeList ul li + .tableBulletItem, .noticeWrap .notiCon ul .acc-menu-cnt .txList03 .modalTable li + .tableBulletItem, .modalTable .noticeWrap .notiCon ul .acc-menu-cnt .txList03 li + .tableBulletItem, .acc-menu-cnt .txList03 .noticeWrap .notiCon ul .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList03 .noticeWrap .notiCon ul li + .tableBulletItem, .notiCon .noticeWrap ul .acc-menu-cnt .txList03 .modalTable li + .tableBulletItem, .modalTable .notiCon .noticeWrap ul .acc-menu-cnt .txList03 li + .tableBulletItem, .acc-menu-cnt .txList03 .notiCon .noticeWrap ul .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList03 .notiCon .noticeWrap ul li + .tableBulletItem, .noticeList .acc-menu-cnt .txList03 .modalTable li + .tableBulletItem, .modalTable .noticeList .acc-menu-cnt .txList03 li + .tableBulletItem, .acc-menu-cnt .noticeList .txList03 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .noticeList .txList03 li + .tableBulletItem, .noticeWrap .acc-menu-cnt .txList03 .modalTable li + .tableBulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList03 li + .tableBulletItem, .acc-menu-cnt .noticeWrap .txList03 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .noticeWrap .txList03 li + .tableBulletItem, .noticeList .acc-menu-cnt .txList05 .txList03 .modalTable li + .tableBulletItem, .modalTable .noticeList .acc-menu-cnt .txList05 .txList03 li + .tableBulletItem, .noticeList .acc-menu-cnt .txList03 .txList05 .modalTable li + .tableBulletItem, .modalTable .noticeList .acc-menu-cnt .txList03 .txList05 li + .tableBulletItem, .acc-menu-cnt .noticeList .txList05 .txList03 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .noticeList .txList05 .txList03 li + .tableBulletItem, .acc-menu-cnt .txList03 .noticeList .txList05 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList03 .noticeList .txList05 li + .tableBulletItem, .noticeWrap .acc-menu-cnt .txList05 .txList03 .modalTable li + .tableBulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList05 .txList03 li + .tableBulletItem, .noticeWrap .acc-menu-cnt .txList03 .txList05 .modalTable li + .tableBulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList03 .txList05 li + .tableBulletItem, .acc-menu-cnt .noticeWrap .txList05 .txList03 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .noticeWrap .txList05 .txList03 li + .tableBulletItem, .acc-menu-cnt .txList03 .noticeWrap .txList05 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList03 .noticeWrap .txList05 li + .tableBulletItem, .noticeList .bulletList .acc-menu-cnt .txList05 .modalTable li + .tableBulletItem, .modalTable .noticeList .bulletList .acc-menu-cnt .txList05 li + .tableBulletItem, .acc-menu-cnt .txList05 .noticeList .bulletList .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList05 .noticeList .bulletList li + .tableBulletItem, .noticeWrap .bulletList .acc-menu-cnt .txList05 .modalTable li + .tableBulletItem, .modalTable .noticeWrap .bulletList .acc-menu-cnt .txList05 li + .tableBulletItem, .acc-menu-cnt .txList05 .noticeWrap .bulletList .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList05 .noticeWrap .bulletList li + .tableBulletItem, .noticeList .notiCon ul .acc-menu-cnt .txList05 .modalTable li + .tableBulletItem, .modalTable .noticeList .notiCon ul .acc-menu-cnt .txList05 li + .tableBulletItem, .acc-menu-cnt .txList05 .noticeList .notiCon ul .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList05 .noticeList .notiCon ul li + .tableBulletItem, .notiCon .noticeList ul .acc-menu-cnt .txList05 .modalTable li + .tableBulletItem, .modalTable .notiCon .noticeList ul .acc-menu-cnt .txList05 li + .tableBulletItem, .acc-menu-cnt .txList05 .notiCon .noticeList ul .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList05 .notiCon .noticeList ul li + .tableBulletItem, .noticeWrap .notiCon ul .acc-menu-cnt .txList05 .modalTable li + .tableBulletItem, .modalTable .noticeWrap .notiCon ul .acc-menu-cnt .txList05 li + .tableBulletItem, .acc-menu-cnt .txList05 .noticeWrap .notiCon ul .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList05 .noticeWrap .notiCon ul li + .tableBulletItem, .notiCon .noticeWrap ul .acc-menu-cnt .txList05 .modalTable li + .tableBulletItem, .modalTable .notiCon .noticeWrap ul .acc-menu-cnt .txList05 li + .tableBulletItem, .acc-menu-cnt .txList05 .notiCon .noticeWrap ul .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList05 .notiCon .noticeWrap ul li + .tableBulletItem, .noticeList .acc-menu-cnt .txList03 .txList05 .modalTable li + .tableBulletItem, .modalTable .noticeList .acc-menu-cnt .txList03 .txList05 li + .tableBulletItem, .noticeList .acc-menu-cnt .txList05 .txList03 .modalTable li + .tableBulletItem, .modalTable .noticeList .acc-menu-cnt .txList05 .txList03 li + .tableBulletItem, .acc-menu-cnt .noticeList .txList03 .txList05 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .noticeList .txList03 .txList05 li + .tableBulletItem, .acc-menu-cnt .txList05 .noticeList .txList03 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList05 .noticeList .txList03 li + .tableBulletItem, .noticeWrap .acc-menu-cnt .txList03 .txList05 .modalTable li + .tableBulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList03 .txList05 li + .tableBulletItem, .noticeWrap .acc-menu-cnt .txList05 .txList03 .modalTable li + .tableBulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList05 .txList03 li + .tableBulletItem, .acc-menu-cnt .noticeWrap .txList03 .txList05 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .noticeWrap .txList03 .txList05 li + .tableBulletItem, .acc-menu-cnt .txList05 .noticeWrap .txList03 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList05 .noticeWrap .txList03 li + .tableBulletItem, .noticeList .acc-menu-cnt .txList05 .modalTable li + .tableBulletItem, .modalTable .noticeList .acc-menu-cnt .txList05 li + .tableBulletItem, .acc-menu-cnt .noticeList .txList05 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .noticeList .txList05 li + .tableBulletItem, .noticeWrap .acc-menu-cnt .txList05 .modalTable li + .tableBulletItem, .modalTable .noticeWrap .acc-menu-cnt .txList05 li + .tableBulletItem, .acc-menu-cnt .noticeWrap .txList05 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .noticeWrap .txList05 li + .tableBulletItem, .noticeList .bulletList .notiCon ul .bulletItem + li, .notiCon ul .noticeList .bulletList .bulletItem + li, .noticeWrap .bulletList .notiCon ul .bulletItem + li, .notiCon ul .noticeWrap .bulletList .bulletItem + li, .noticeList .notiCon ul .bulletItem + li, .notiCon .noticeList ul .bulletItem + li, .noticeWrap .notiCon ul .bulletItem + li, .notiCon .noticeWrap ul .bulletItem + li, .noticeList .acc-menu-cnt .txList03 .notiCon ul .bulletItem + li, .notiCon ul .noticeList .acc-menu-cnt .txList03 .bulletItem + li, .acc-menu-cnt .noticeList .txList03 .notiCon ul .bulletItem + li, .notiCon ul .acc-menu-cnt .noticeList .txList03 .bulletItem + li, .noticeWrap .acc-menu-cnt .txList03 .notiCon ul .bulletItem + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList03 .bulletItem + li, .acc-menu-cnt .noticeWrap .txList03 .notiCon ul .bulletItem + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList03 .bulletItem + li, .noticeList .acc-menu-cnt .txList05 .notiCon ul .bulletItem + li, .notiCon ul .noticeList .acc-menu-cnt .txList05 .bulletItem + li, .acc-menu-cnt .noticeList .txList05 .notiCon ul .bulletItem + li, .notiCon ul .acc-menu-cnt .noticeList .txList05 .bulletItem + li, .noticeWrap .acc-menu-cnt .txList05 .notiCon ul .bulletItem + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList05 .bulletItem + li, .acc-menu-cnt .noticeWrap .txList05 .notiCon ul .bulletItem + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList05 .bulletItem + li, .noticeList .bulletList .modalTable .notiCon ul .tableBulletItem + li, .notiCon ul .noticeList .bulletList .modalTable .tableBulletItem + li, .modalTable .noticeList .bulletList .notiCon ul .tableBulletItem + li, .notiCon ul .modalTable .noticeList .bulletList .tableBulletItem + li, .noticeWrap .bulletList .modalTable .notiCon ul .tableBulletItem + li, .notiCon ul .noticeWrap .bulletList .modalTable .tableBulletItem + li, .modalTable .noticeWrap .bulletList .notiCon ul .tableBulletItem + li, .notiCon ul .modalTable .noticeWrap .bulletList .tableBulletItem + li, .noticeList .notiCon ul .modalTable .tableBulletItem + li, .modalTable .noticeList .notiCon ul .tableBulletItem + li, .notiCon .noticeList ul .modalTable .tableBulletItem + li, .modalTable .notiCon .noticeList ul .tableBulletItem + li, .noticeWrap .notiCon ul .modalTable .tableBulletItem + li, .modalTable .noticeWrap .notiCon ul .tableBulletItem + li, .notiCon .noticeWrap ul .modalTable .tableBulletItem + li, .modalTable .notiCon .noticeWrap ul .tableBulletItem + li, .noticeList .acc-menu-cnt .txList03 .modalTable .notiCon ul .tableBulletItem + li, .notiCon ul .noticeList .acc-menu-cnt .txList03 .modalTable .tableBulletItem + li, .modalTable .noticeList .acc-menu-cnt .txList03 .notiCon ul .tableBulletItem + li, .notiCon ul .modalTable .noticeList .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .noticeList .txList03 .modalTable .notiCon ul .tableBulletItem + li, .notiCon ul .acc-menu-cnt .noticeList .txList03 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .noticeList .txList03 .notiCon ul .tableBulletItem + li, .notiCon ul .modalTable .acc-menu-cnt .noticeList .txList03 .tableBulletItem + li, .noticeWrap .acc-menu-cnt .txList03 .modalTable .notiCon ul .tableBulletItem + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList03 .modalTable .tableBulletItem + li, .modalTable .noticeWrap .acc-menu-cnt .txList03 .notiCon ul .tableBulletItem + li, .notiCon ul .modalTable .noticeWrap .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .noticeWrap .txList03 .modalTable .notiCon ul .tableBulletItem + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList03 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .noticeWrap .txList03 .notiCon ul .tableBulletItem + li, .notiCon ul .modalTable .acc-menu-cnt .noticeWrap .txList03 .tableBulletItem + li, .noticeList .acc-menu-cnt .txList05 .modalTable .notiCon ul .tableBulletItem + li, .notiCon ul .noticeList .acc-menu-cnt .txList05 .modalTable .tableBulletItem + li, .modalTable .noticeList .acc-menu-cnt .txList05 .notiCon ul .tableBulletItem + li, .notiCon ul .modalTable .noticeList .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .noticeList .txList05 .modalTable .notiCon ul .tableBulletItem + li, .notiCon ul .acc-menu-cnt .noticeList .txList05 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .noticeList .txList05 .notiCon ul .tableBulletItem + li, .notiCon ul .modalTable .acc-menu-cnt .noticeList .txList05 .tableBulletItem + li, .noticeWrap .acc-menu-cnt .txList05 .modalTable .notiCon ul .tableBulletItem + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList05 .modalTable .tableBulletItem + li, .modalTable .noticeWrap .acc-menu-cnt .txList05 .notiCon ul .tableBulletItem + li, .notiCon ul .modalTable .noticeWrap .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .noticeWrap .txList05 .modalTable .notiCon ul .tableBulletItem + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList05 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .noticeWrap .txList05 .notiCon ul .tableBulletItem + li, .notiCon ul .modalTable .acc-menu-cnt .noticeWrap .txList05 .tableBulletItem + li, .noticeList .bulletList .notiCon ul li + li, .notiCon ul .noticeList .bulletList li + li, .noticeWrap .bulletList .notiCon ul li + li, .notiCon ul .noticeWrap .bulletList li + li, .noticeList .notiCon ul li + li, .notiCon .noticeList ul li + li, .noticeWrap .notiCon ul li + li, .notiCon .noticeWrap ul li + li, .noticeList .acc-menu-cnt .txList03 .notiCon ul li + li, .notiCon ul .noticeList .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .noticeList .txList03 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeList .txList03 li + li, .noticeWrap .acc-menu-cnt .txList03 .notiCon ul li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .noticeWrap .txList03 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList03 li + li, .noticeList .acc-menu-cnt .txList05 .notiCon ul li + li, .notiCon ul .noticeList .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .noticeList .txList05 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeList .txList05 li + li, .noticeWrap .acc-menu-cnt .txList05 .notiCon ul li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .noticeWrap .txList05 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList05 li + li, .noticeList .bulletList .acc-menu-cnt .txList03 .notiCon ul li + li, .notiCon ul .noticeList .bulletList .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .noticeList .bulletList .notiCon ul li + li, .notiCon ul .acc-menu-cnt .txList03 .noticeList .bulletList li + li, .noticeWrap .bulletList .acc-menu-cnt .txList03 .notiCon ul li + li, .notiCon ul .noticeWrap .bulletList .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .noticeWrap .bulletList .notiCon ul li + li, .notiCon ul .acc-menu-cnt .txList03 .noticeWrap .bulletList li + li, .noticeList .notiCon ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .noticeList .notiCon ul li + li, .notiCon .noticeList ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .notiCon .noticeList ul li + li, .noticeWrap .notiCon ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .noticeWrap .notiCon ul li + li, .notiCon .noticeWrap ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .notiCon .noticeWrap ul li + li, .noticeList .acc-menu-cnt .txList03 .notiCon ul li + li, .notiCon ul .noticeList .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .noticeList .txList03 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeList .txList03 li + li, .noticeWrap .acc-menu-cnt .txList03 .notiCon ul li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .noticeWrap .txList03 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList03 li + li, .noticeList .acc-menu-cnt .txList05 .txList03 .notiCon ul li + li, .notiCon ul .noticeList .acc-menu-cnt .txList05 .txList03 li + li, .noticeList .acc-menu-cnt .txList03 .txList05 .notiCon ul li + li, .notiCon ul .noticeList .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .noticeList .txList05 .txList03 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeList .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .noticeList .txList05 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .txList03 .noticeList .txList05 li + li, .noticeWrap .acc-menu-cnt .txList05 .txList03 .notiCon ul li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList05 .txList03 li + li, .noticeWrap .acc-menu-cnt .txList03 .txList05 .notiCon ul li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .noticeWrap .txList05 .txList03 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .noticeWrap .txList05 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .txList03 .noticeWrap .txList05 li + li, .noticeList .bulletList .acc-menu-cnt .txList05 .notiCon ul li + li, .notiCon ul .noticeList .bulletList .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .noticeList .bulletList .notiCon ul li + li, .notiCon ul .acc-menu-cnt .txList05 .noticeList .bulletList li + li, .noticeWrap .bulletList .acc-menu-cnt .txList05 .notiCon ul li + li, .notiCon ul .noticeWrap .bulletList .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .noticeWrap .bulletList .notiCon ul li + li, .notiCon ul .acc-menu-cnt .txList05 .noticeWrap .bulletList li + li, .noticeList .notiCon ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .noticeList .notiCon ul li + li, .notiCon .noticeList ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .notiCon .noticeList ul li + li, .noticeWrap .notiCon ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .noticeWrap .notiCon ul li + li, .notiCon .noticeWrap ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .notiCon .noticeWrap ul li + li, .noticeList .acc-menu-cnt .txList03 .txList05 .notiCon ul li + li, .notiCon ul .noticeList .acc-menu-cnt .txList03 .txList05 li + li, .noticeList .acc-menu-cnt .txList05 .txList03 .notiCon ul li + li, .notiCon ul .noticeList .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .noticeList .txList03 .txList05 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeList .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .noticeList .txList03 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .txList05 .noticeList .txList03 li + li, .noticeWrap .acc-menu-cnt .txList03 .txList05 .notiCon ul li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList03 .txList05 li + li, .noticeWrap .acc-menu-cnt .txList05 .txList03 .notiCon ul li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .noticeWrap .txList03 .txList05 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .noticeWrap .txList03 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .txList05 .noticeWrap .txList03 li + li, .noticeList .acc-menu-cnt .txList05 .notiCon ul li + li, .notiCon ul .noticeList .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .noticeList .txList05 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeList .txList05 li + li, .noticeWrap .acc-menu-cnt .txList05 .notiCon ul li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .noticeWrap .txList05 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList05 li + li, .noticeList .bulletList .acc-menu-cnt .txList03 .bulletItem + li, .acc-menu-cnt .txList03 .noticeList .bulletList .bulletItem + li, .noticeWrap .bulletList .acc-menu-cnt .txList03 .bulletItem + li, .acc-menu-cnt .txList03 .noticeWrap .bulletList .bulletItem + li, .noticeList .notiCon ul .acc-menu-cnt .txList03 .bulletItem + li, .acc-menu-cnt .txList03 .noticeList .notiCon ul .bulletItem + li, .notiCon .noticeList ul .acc-menu-cnt .txList03 .bulletItem + li, .acc-menu-cnt .txList03 .notiCon .noticeList ul .bulletItem + li, .noticeWrap .notiCon ul .acc-menu-cnt .txList03 .bulletItem + li, .acc-menu-cnt .txList03 .noticeWrap .notiCon ul .bulletItem + li, .notiCon .noticeWrap ul .acc-menu-cnt .txList03 .bulletItem + li, .acc-menu-cnt .txList03 .notiCon .noticeWrap ul .bulletItem + li, .noticeList .acc-menu-cnt .txList03 .bulletItem + li, .acc-menu-cnt .noticeList .txList03 .bulletItem + li, .noticeWrap .acc-menu-cnt .txList03 .bulletItem + li, .acc-menu-cnt .noticeWrap .txList03 .bulletItem + li, .noticeList .acc-menu-cnt .txList05 .txList03 .bulletItem + li, .noticeList .acc-menu-cnt .txList03 .txList05 .bulletItem + li, .acc-menu-cnt .noticeList .txList05 .txList03 .bulletItem + li, .acc-menu-cnt .txList03 .noticeList .txList05 .bulletItem + li, .noticeWrap .acc-menu-cnt .txList05 .txList03 .bulletItem + li, .noticeWrap .acc-menu-cnt .txList03 .txList05 .bulletItem + li, .acc-menu-cnt .noticeWrap .txList05 .txList03 .bulletItem + li, .acc-menu-cnt .txList03 .noticeWrap .txList05 .bulletItem + li, .noticeList .bulletList .modalTable .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .noticeList .bulletList .modalTable .tableBulletItem + li, .modalTable .noticeList .bulletList .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .modalTable .noticeList .bulletList .tableBulletItem + li, .noticeWrap .bulletList .modalTable .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .noticeWrap .bulletList .modalTable .tableBulletItem + li, .modalTable .noticeWrap .bulletList .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .modalTable .noticeWrap .bulletList .tableBulletItem + li, .noticeList .notiCon ul .modalTable .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .noticeList .notiCon ul .modalTable .tableBulletItem + li, .modalTable .noticeList .notiCon ul .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .modalTable .noticeList .notiCon ul .tableBulletItem + li, .notiCon .noticeList ul .modalTable .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .notiCon .noticeList ul .modalTable .tableBulletItem + li, .modalTable .notiCon .noticeList ul .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .modalTable .notiCon .noticeList ul .tableBulletItem + li, .noticeWrap .notiCon ul .modalTable .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .noticeWrap .notiCon ul .modalTable .tableBulletItem + li, .modalTable .noticeWrap .notiCon ul .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .modalTable .noticeWrap .notiCon ul .tableBulletItem + li, .notiCon .noticeWrap ul .modalTable .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .notiCon .noticeWrap ul .modalTable .tableBulletItem + li, .modalTable .notiCon .noticeWrap ul .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .modalTable .notiCon .noticeWrap ul .tableBulletItem + li, .noticeList .acc-menu-cnt .txList03 .modalTable .tableBulletItem + li, .modalTable .noticeList .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .noticeList .txList03 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .noticeList .txList03 .tableBulletItem + li, .noticeWrap .acc-menu-cnt .txList03 .modalTable .tableBulletItem + li, .modalTable .noticeWrap .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .noticeWrap .txList03 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .noticeWrap .txList03 .tableBulletItem + li, .noticeList .acc-menu-cnt .txList05 .modalTable .txList03 .tableBulletItem + li, .noticeList .acc-menu-cnt .txList03 .txList05 .modalTable .tableBulletItem + li, .modalTable .noticeList .acc-menu-cnt .txList05 .txList03 .tableBulletItem + li, .modalTable .noticeList .acc-menu-cnt .txList03 .txList05 .tableBulletItem + li, .acc-menu-cnt .noticeList .txList05 .modalTable .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .noticeList .txList05 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .noticeList .txList05 .txList03 .tableBulletItem + li, .modalTable .acc-menu-cnt .txList03 .noticeList .txList05 .tableBulletItem + li, .noticeWrap .acc-menu-cnt .txList05 .modalTable .txList03 .tableBulletItem + li, .noticeWrap .acc-menu-cnt .txList03 .txList05 .modalTable .tableBulletItem + li, .modalTable .noticeWrap .acc-menu-cnt .txList05 .txList03 .tableBulletItem + li, .modalTable .noticeWrap .acc-menu-cnt .txList03 .txList05 .tableBulletItem + li, .acc-menu-cnt .noticeWrap .txList05 .modalTable .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .noticeWrap .txList05 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .noticeWrap .txList05 .txList03 .tableBulletItem + li, .modalTable .acc-menu-cnt .txList03 .noticeWrap .txList05 .tableBulletItem + li, .noticeList .bulletList .notiCon ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .noticeList .bulletList .notiCon ul li + li, .notiCon ul .noticeList .bulletList .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .notiCon ul .noticeList .bulletList li + li, .noticeWrap .bulletList .notiCon ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .noticeWrap .bulletList .notiCon ul li + li, .notiCon ul .noticeWrap .bulletList .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .notiCon ul .noticeWrap .bulletList li + li, .noticeList .notiCon ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .noticeList .notiCon ul li + li, .notiCon .noticeList ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .notiCon .noticeList ul li + li, .noticeWrap .notiCon ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .noticeWrap .notiCon ul li + li, .notiCon .noticeWrap ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .notiCon .noticeWrap ul li + li, .noticeList .acc-menu-cnt .txList03 .notiCon ul li + li, .notiCon ul .noticeList .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .noticeList .txList03 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeList .txList03 li + li, .noticeWrap .acc-menu-cnt .txList03 .notiCon ul li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .noticeWrap .txList03 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList03 li + li, .noticeList .acc-menu-cnt .txList05 .notiCon ul .txList03 li + li, .noticeList .acc-menu-cnt .txList03 .txList05 .notiCon ul li + li, .notiCon ul .noticeList .acc-menu-cnt .txList05 .txList03 li + li, .notiCon ul .noticeList .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .noticeList .txList05 .notiCon ul .txList03 li + li, .acc-menu-cnt .txList03 .noticeList .txList05 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeList .txList05 .txList03 li + li, .notiCon ul .acc-menu-cnt .txList03 .noticeList .txList05 li + li, .noticeWrap .acc-menu-cnt .txList05 .notiCon ul .txList03 li + li, .noticeWrap .acc-menu-cnt .txList03 .txList05 .notiCon ul li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList05 .txList03 li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .noticeWrap .txList05 .notiCon ul .txList03 li + li, .acc-menu-cnt .txList03 .noticeWrap .txList05 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList05 .txList03 li + li, .notiCon ul .acc-menu-cnt .txList03 .noticeWrap .txList05 li + li, .noticeList .bulletList .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .noticeList .bulletList li + li, .noticeWrap .bulletList .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .noticeWrap .bulletList li + li, .noticeList .notiCon ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .noticeList .notiCon ul li + li, .notiCon .noticeList ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .notiCon .noticeList ul li + li, .noticeWrap .notiCon ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .noticeWrap .notiCon ul li + li, .notiCon .noticeWrap ul .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .notiCon .noticeWrap ul li + li, .noticeList .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .noticeList .txList03 li + li, .noticeWrap .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .noticeWrap .txList03 li + li, .noticeList .acc-menu-cnt .txList05 .txList03 li + li, .noticeList .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .noticeList .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .noticeList .txList05 li + li, .noticeWrap .acc-menu-cnt .txList05 .txList03 li + li, .noticeWrap .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .noticeWrap .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .noticeWrap .txList05 li + li, .noticeList .bulletList .acc-menu-cnt .txList05 .txList03 li + li, .noticeList .bulletList .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .noticeList .bulletList .txList03 li + li, .acc-menu-cnt .txList03 .txList05 .noticeList .bulletList li + li, .noticeWrap .bulletList .acc-menu-cnt .txList05 .txList03 li + li, .noticeWrap .bulletList .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .noticeWrap .bulletList .txList03 li + li, .acc-menu-cnt .txList03 .txList05 .noticeWrap .bulletList li + li, .noticeList .notiCon ul .acc-menu-cnt .txList05 .txList03 li + li, .noticeList .notiCon ul .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .noticeList .notiCon ul .txList03 li + li, .acc-menu-cnt .txList03 .txList05 .noticeList .notiCon ul li + li, .notiCon .noticeList ul .acc-menu-cnt .txList05 .txList03 li + li, .notiCon .noticeList ul .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .notiCon .noticeList ul .txList03 li + li, .acc-menu-cnt .txList03 .txList05 .notiCon .noticeList ul li + li, .noticeWrap .notiCon ul .acc-menu-cnt .txList05 .txList03 li + li, .noticeWrap .notiCon ul .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .noticeWrap .notiCon ul .txList03 li + li, .acc-menu-cnt .txList03 .txList05 .noticeWrap .notiCon ul li + li, .notiCon .noticeWrap ul .acc-menu-cnt .txList05 .txList03 li + li, .notiCon .noticeWrap ul .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .notiCon .noticeWrap ul .txList03 li + li, .acc-menu-cnt .txList03 .txList05 .notiCon .noticeWrap ul li + li, .noticeList .acc-menu-cnt .txList03 .txList05 li + li, .noticeList .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .noticeList .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .noticeList .txList03 li + li, .noticeWrap .acc-menu-cnt .txList03 .txList05 li + li, .noticeWrap .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .noticeWrap .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .noticeWrap .txList03 li + li, .noticeList .acc-menu-cnt .txList05 .txList03 li + li, .noticeList .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .noticeList .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .noticeList .txList05 li + li, .noticeWrap .acc-menu-cnt .txList05 .txList03 li + li, .noticeWrap .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .noticeWrap .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .noticeWrap .txList05 li + li,
.noticeList .bulletList .acc-menu-cnt .txList05 .bulletItem + li, .acc-menu-cnt .txList05 .noticeList .bulletList .bulletItem + li,
.noticeWrap .bulletList .acc-menu-cnt .txList05 .bulletItem + li, .acc-menu-cnt .txList05 .noticeWrap .bulletList .bulletItem + li,
.noticeList .notiCon ul .acc-menu-cnt .txList05 .bulletItem + li, .acc-menu-cnt .txList05 .noticeList .notiCon ul .bulletItem + li, .notiCon .noticeList ul .acc-menu-cnt .txList05 .bulletItem + li, .acc-menu-cnt .txList05 .notiCon .noticeList ul .bulletItem + li,
.noticeWrap .notiCon ul .acc-menu-cnt .txList05 .bulletItem + li, .acc-menu-cnt .txList05 .noticeWrap .notiCon ul .bulletItem + li, .notiCon .noticeWrap ul .acc-menu-cnt .txList05 .bulletItem + li, .acc-menu-cnt .txList05 .notiCon .noticeWrap ul .bulletItem + li,
.noticeList .acc-menu-cnt .txList03 .txList05 .bulletItem + li, .noticeList .acc-menu-cnt .txList05 .txList03 .bulletItem + li, .acc-menu-cnt .noticeList .txList03 .txList05 .bulletItem + li, .acc-menu-cnt .txList05 .noticeList .txList03 .bulletItem + li,
.noticeWrap .acc-menu-cnt .txList03 .txList05 .bulletItem + li, .noticeWrap .acc-menu-cnt .txList05 .txList03 .bulletItem + li, .acc-menu-cnt .noticeWrap .txList03 .txList05 .bulletItem + li, .acc-menu-cnt .txList05 .noticeWrap .txList03 .bulletItem + li,
.noticeList .acc-menu-cnt .txList05 .bulletItem + li, .acc-menu-cnt .noticeList .txList05 .bulletItem + li,
.noticeWrap .acc-menu-cnt .txList05 .bulletItem + li, .acc-menu-cnt .noticeWrap .txList05 .bulletItem + li,
.noticeList .bulletList .modalTable .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .noticeList .bulletList .modalTable .tableBulletItem + li, .modalTable .noticeList .bulletList .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .modalTable .noticeList .bulletList .tableBulletItem + li,
.noticeWrap .bulletList .modalTable .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .noticeWrap .bulletList .modalTable .tableBulletItem + li, .modalTable .noticeWrap .bulletList .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .modalTable .noticeWrap .bulletList .tableBulletItem + li,
.noticeList .notiCon ul .modalTable .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .noticeList .notiCon ul .modalTable .tableBulletItem + li, .modalTable .noticeList .notiCon ul .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .modalTable .noticeList .notiCon ul .tableBulletItem + li, .notiCon .noticeList ul .modalTable .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .notiCon .noticeList ul .modalTable .tableBulletItem + li, .modalTable .notiCon .noticeList ul .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .modalTable .notiCon .noticeList ul .tableBulletItem + li,
.noticeWrap .notiCon ul .modalTable .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .noticeWrap .notiCon ul .modalTable .tableBulletItem + li, .modalTable .noticeWrap .notiCon ul .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .modalTable .noticeWrap .notiCon ul .tableBulletItem + li, .notiCon .noticeWrap ul .modalTable .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .notiCon .noticeWrap ul .modalTable .tableBulletItem + li, .modalTable .notiCon .noticeWrap ul .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .modalTable .notiCon .noticeWrap ul .tableBulletItem + li,
.noticeList .acc-menu-cnt .txList03 .modalTable .txList05 .tableBulletItem + li, .noticeList .acc-menu-cnt .txList05 .txList03 .modalTable .tableBulletItem + li, .modalTable .noticeList .acc-menu-cnt .txList03 .txList05 .tableBulletItem + li, .modalTable .noticeList .acc-menu-cnt .txList05 .txList03 .tableBulletItem + li, .acc-menu-cnt .noticeList .txList03 .modalTable .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .noticeList .txList03 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .noticeList .txList03 .txList05 .tableBulletItem + li, .modalTable .acc-menu-cnt .txList05 .noticeList .txList03 .tableBulletItem + li,
.noticeWrap .acc-menu-cnt .txList03 .modalTable .txList05 .tableBulletItem + li, .noticeWrap .acc-menu-cnt .txList05 .txList03 .modalTable .tableBulletItem + li, .modalTable .noticeWrap .acc-menu-cnt .txList03 .txList05 .tableBulletItem + li, .modalTable .noticeWrap .acc-menu-cnt .txList05 .txList03 .tableBulletItem + li, .acc-menu-cnt .noticeWrap .txList03 .modalTable .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .noticeWrap .txList03 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .noticeWrap .txList03 .txList05 .tableBulletItem + li, .modalTable .acc-menu-cnt .txList05 .noticeWrap .txList03 .tableBulletItem + li,
.noticeList .acc-menu-cnt .txList05 .modalTable .tableBulletItem + li, .modalTable .noticeList .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .noticeList .txList05 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .noticeList .txList05 .tableBulletItem + li,
.noticeWrap .acc-menu-cnt .txList05 .modalTable .tableBulletItem + li, .modalTable .noticeWrap .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .noticeWrap .txList05 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .noticeWrap .txList05 .tableBulletItem + li,
.noticeList .bulletList .notiCon ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .noticeList .bulletList .notiCon ul li + li, .notiCon ul .noticeList .bulletList .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .notiCon ul .noticeList .bulletList li + li,
.noticeWrap .bulletList .notiCon ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .noticeWrap .bulletList .notiCon ul li + li, .notiCon ul .noticeWrap .bulletList .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .notiCon ul .noticeWrap .bulletList li + li,
.noticeList .notiCon ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .noticeList .notiCon ul li + li, .notiCon .noticeList ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .notiCon .noticeList ul li + li,
.noticeWrap .notiCon ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .noticeWrap .notiCon ul li + li, .notiCon .noticeWrap ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .notiCon .noticeWrap ul li + li,
.noticeList .acc-menu-cnt .txList03 .notiCon ul .txList05 li + li, .noticeList .acc-menu-cnt .txList05 .txList03 .notiCon ul li + li, .notiCon ul .noticeList .acc-menu-cnt .txList03 .txList05 li + li, .notiCon ul .noticeList .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .noticeList .txList03 .notiCon ul .txList05 li + li, .acc-menu-cnt .txList05 .noticeList .txList03 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeList .txList03 .txList05 li + li, .notiCon ul .acc-menu-cnt .txList05 .noticeList .txList03 li + li,
.noticeWrap .acc-menu-cnt .txList03 .notiCon ul .txList05 li + li, .noticeWrap .acc-menu-cnt .txList05 .txList03 .notiCon ul li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList03 .txList05 li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .noticeWrap .txList03 .notiCon ul .txList05 li + li, .acc-menu-cnt .txList05 .noticeWrap .txList03 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList03 .txList05 li + li, .notiCon ul .acc-menu-cnt .txList05 .noticeWrap .txList03 li + li,
.noticeList .acc-menu-cnt .txList05 .notiCon ul li + li, .notiCon ul .noticeList .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .noticeList .txList05 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeList .txList05 li + li,
.noticeWrap .acc-menu-cnt .txList05 .notiCon ul li + li, .notiCon ul .noticeWrap .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .noticeWrap .txList05 .notiCon ul li + li, .notiCon ul .acc-menu-cnt .noticeWrap .txList05 li + li,
.noticeList .bulletList .acc-menu-cnt .txList03 .txList05 li + li, .noticeList .bulletList .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .noticeList .bulletList .txList05 li + li, .acc-menu-cnt .txList05 .txList03 .noticeList .bulletList li + li,
.noticeWrap .bulletList .acc-menu-cnt .txList03 .txList05 li + li, .noticeWrap .bulletList .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .noticeWrap .bulletList .txList05 li + li, .acc-menu-cnt .txList05 .txList03 .noticeWrap .bulletList li + li,
.noticeList .notiCon ul .acc-menu-cnt .txList03 .txList05 li + li, .noticeList .notiCon ul .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .noticeList .notiCon ul .txList05 li + li, .acc-menu-cnt .txList05 .txList03 .noticeList .notiCon ul li + li, .notiCon .noticeList ul .acc-menu-cnt .txList03 .txList05 li + li, .notiCon .noticeList ul .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .notiCon .noticeList ul .txList05 li + li, .acc-menu-cnt .txList05 .txList03 .notiCon .noticeList ul li + li,
.noticeWrap .notiCon ul .acc-menu-cnt .txList03 .txList05 li + li, .noticeWrap .notiCon ul .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .noticeWrap .notiCon ul .txList05 li + li, .acc-menu-cnt .txList05 .txList03 .noticeWrap .notiCon ul li + li, .notiCon .noticeWrap ul .acc-menu-cnt .txList03 .txList05 li + li, .notiCon .noticeWrap ul .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .notiCon .noticeWrap ul .txList05 li + li, .acc-menu-cnt .txList05 .txList03 .notiCon .noticeWrap ul li + li,
.noticeList .acc-menu-cnt .txList03 .txList05 li + li, .noticeList .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .noticeList .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .noticeList .txList03 li + li,
.noticeWrap .acc-menu-cnt .txList03 .txList05 li + li, .noticeWrap .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .noticeWrap .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .noticeWrap .txList03 li + li,
.noticeList .acc-menu-cnt .txList05 .txList03 li + li, .noticeList .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .noticeList .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .noticeList .txList05 li + li,
.noticeWrap .acc-menu-cnt .txList05 .txList03 li + li, .noticeWrap .acc-menu-cnt .txList03 .txList05 li + li, .acc-menu-cnt .noticeWrap .txList05 .txList03 li + li, .acc-menu-cnt .txList03 .noticeWrap .txList05 li + li,
.noticeList .bulletList .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .noticeList .bulletList li + li,
.noticeWrap .bulletList .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .noticeWrap .bulletList li + li,
.noticeList .notiCon ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .noticeList .notiCon ul li + li, .notiCon .noticeList ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .notiCon .noticeList ul li + li,
.noticeWrap .notiCon ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .noticeWrap .notiCon ul li + li, .notiCon .noticeWrap ul .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .notiCon .noticeWrap ul li + li,
.noticeList .acc-menu-cnt .txList03 .txList05 li + li, .noticeList .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .noticeList .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .noticeList .txList03 li + li,
.noticeWrap .acc-menu-cnt .txList03 .txList05 li + li, .noticeWrap .acc-menu-cnt .txList05 .txList03 li + li, .acc-menu-cnt .noticeWrap .txList03 .txList05 li + li, .acc-menu-cnt .txList05 .noticeWrap .txList03 li + li,
.noticeList .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .noticeList .txList05 li + li,
.noticeWrap .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .noticeWrap .txList05 li + li {
    margin-top: 8px;
}

.noticeList .bulletList .bulletItem:last-child, .noticeWrap .bulletList .bulletItem:last-child, .noticeList .notiCon ul .bulletItem:last-child, .notiCon .noticeList ul .bulletItem:last-child, .noticeWrap .notiCon ul .bulletItem:last-child, .notiCon .noticeWrap ul .bulletItem:last-child, .noticeList .acc-menu-cnt .txList03 .bulletItem:last-child, .acc-menu-cnt .noticeList .txList03 .bulletItem:last-child, .noticeWrap .acc-menu-cnt .txList03 .bulletItem:last-child, .acc-menu-cnt .noticeWrap .txList03 .bulletItem:last-child, .noticeList .acc-menu-cnt .txList05 .bulletItem:last-child, .acc-menu-cnt .noticeList .txList05 .bulletItem:last-child, .noticeWrap .acc-menu-cnt .txList05 .bulletItem:last-child, .acc-menu-cnt .noticeWrap .txList05 .bulletItem:last-child, .noticeList .bulletList .modalTable .tableBulletItem:last-child, .modalTable .noticeList .bulletList .tableBulletItem:last-child, .noticeWrap .bulletList .modalTable .tableBulletItem:last-child, .modalTable .noticeWrap .bulletList .tableBulletItem:last-child, .noticeList .notiCon ul .modalTable .tableBulletItem:last-child, .modalTable .noticeList .notiCon ul .tableBulletItem:last-child, .notiCon .noticeList ul .modalTable .tableBulletItem:last-child, .modalTable .notiCon .noticeList ul .tableBulletItem:last-child, .noticeWrap .notiCon ul .modalTable .tableBulletItem:last-child, .modalTable .noticeWrap .notiCon ul .tableBulletItem:last-child, .notiCon .noticeWrap ul .modalTable .tableBulletItem:last-child, .modalTable .notiCon .noticeWrap ul .tableBulletItem:last-child, .noticeList .acc-menu-cnt .txList03 .modalTable .tableBulletItem:last-child, .modalTable .noticeList .acc-menu-cnt .txList03 .tableBulletItem:last-child, .acc-menu-cnt .noticeList .txList03 .modalTable .tableBulletItem:last-child, .modalTable .acc-menu-cnt .noticeList .txList03 .tableBulletItem:last-child, .noticeWrap .acc-menu-cnt .txList03 .modalTable .tableBulletItem:last-child, .modalTable .noticeWrap .acc-menu-cnt .txList03 .tableBulletItem:last-child, .acc-menu-cnt .noticeWrap .txList03 .modalTable .tableBulletItem:last-child, .modalTable .acc-menu-cnt .noticeWrap .txList03 .tableBulletItem:last-child, .noticeList .acc-menu-cnt .txList05 .modalTable .tableBulletItem:last-child, .modalTable .noticeList .acc-menu-cnt .txList05 .tableBulletItem:last-child, .acc-menu-cnt .noticeList .txList05 .modalTable .tableBulletItem:last-child, .modalTable .acc-menu-cnt .noticeList .txList05 .tableBulletItem:last-child, .noticeWrap .acc-menu-cnt .txList05 .modalTable .tableBulletItem:last-child, .modalTable .noticeWrap .acc-menu-cnt .txList05 .tableBulletItem:last-child, .acc-menu-cnt .noticeWrap .txList05 .modalTable .tableBulletItem:last-child, .modalTable .acc-menu-cnt .noticeWrap .txList05 .tableBulletItem:last-child, .noticeList .bulletList .notiCon ul li:last-child, .notiCon ul .noticeList .bulletList li:last-child, .noticeWrap .bulletList .notiCon ul li:last-child, .notiCon ul .noticeWrap .bulletList li:last-child, .noticeList .notiCon ul li:last-child, .notiCon .noticeList ul li:last-child, .noticeWrap .notiCon ul li:last-child, .notiCon .noticeWrap ul li:last-child, .acc-menu-cnt .txList03 .noticeList .bulletList li:last-child, .acc-menu-cnt .txList03 .noticeWrap .bulletList li:last-child, .acc-menu-cnt .txList03 .noticeList .notiCon ul li:last-child, .acc-menu-cnt .txList03 .notiCon .noticeList ul li:last-child, .noticeList .acc-menu-cnt .txList03 li:last-child, .acc-menu-cnt .noticeList .txList03 li:last-child, .noticeWrap .acc-menu-cnt .txList03 li:last-child, .acc-menu-cnt .noticeWrap .txList03 li:last-child, .acc-menu-cnt .txList05 .noticeList .bulletList li:last-child, .acc-menu-cnt .txList05 .noticeWrap .bulletList li:last-child, .acc-menu-cnt .txList05 .noticeList .notiCon ul li:last-child, .acc-menu-cnt .txList05 .notiCon .noticeList ul li:last-child,
.noticeList .acc-menu-cnt .txList05 li:last-child, .acc-menu-cnt .noticeList .txList05 li:last-child,
.noticeWrap .acc-menu-cnt .txList05 li:last-child, .acc-menu-cnt .noticeWrap .txList05 li:last-child {
    margin-bottom: 24px;
}

.contactBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 6px;
}

.contactBox .lef {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
}

.contactBox .lef::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: top;
    background: url(../img/godo2023/ico_callcenter.svg) no-repeat center/cover;
}

.contactBox .rig {
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    color: #666;
}

#modalWrap .modal .modalInner.tDirectNotice {
    padding-bottom: 40px;
}

.searchBtn {
    padding: 5px 33px;
}

.searchScroll {
    padding: 24px;
    background: #f7f7f7;
    border-radius: 6px;
}

.searchScroll ::-webkit-scrollbar {
    width: 4px;
    background-color: #efefef;
    border-radius: 6px;
}

.searchScroll ::-webkit-scrollbar-thumb {
    background-color: #bfbfbf;
    border-radius: 6px;
}

.searchScroll ::-webkit-scrollbar-track {
    background-color: #efefef;
}

.searchOptions {
    width: 100%;
    max-height: 256px;
    overflow: auto;
    padding-right: 24px;
}

.searchOptions li {
    padding: 12px 0;
    border-bottom: 1px solid #e1e1e1;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.searchOptions li:first-child {
    padding: 0 0 12px;
}

.searchOptions li:last-child {
    border-bottom: none;
    padding: 12px 0 0;
}

.searchItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px;
    background: #f7f7f7;
    border-radius: 6px;
}

.searchItem ul {
    width: 100%;
}

.searchItem ul li + li {
    margin-top: 8px;
}

.searchItem span {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.searchItem .fcG100 {
    font-weight: 700;
}

.searchItem .com {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.searchItem .device {
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
    color: #000;
}

.searchCom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.searchCom .com {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.insRewardInfo {
    margin-top: 24px;
    padding: 28px;
    column-gap: 20px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
}

.insRewardInfo strong {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.insRewardInfo .btnWrap .btnSt, .insRewardInfo .btnWrap body .wrap.godo2023 .cart-empty-wrap .btns-wrap a, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .insRewardInfo .btnWrap a, .insRewardInfo .btnWrap body .wrap.godo2023 .my-cart-tbl .cart-btn, body .wrap.godo2023 .my-cart-tbl .insRewardInfo .btnWrap .cart-btn, .insRewardInfo .btnWrap body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .insRewardInfo .btnWrap .group-total-btn > a, .insRewardInfo .btnWrap body .wrap.godo2023 .modal .btn-primary, body .wrap.godo2023 .modal .insRewardInfo .btnWrap .btn-primary, .insRewardInfo .btnWrap body .wrap.godo2023 .modal .btn-semi, body .wrap.godo2023 .modal .insRewardInfo .btnWrap .btn-semi, .insRewardInfo .btnWrap body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .insRewardInfo .btnWrap .btn-outline-primary {
    min-width: 160px;
    flex: 0 0 160px;
}

.instBox p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 26px;
}

.instBox p span {
    display: block;
}

.instBox p span + span {
    margin-top: 8px;
}

.instBox p strong {
    display: inline-block;
    color: #000;
}

.instBox p strong.color {
    color: #ff4d4d;
}

.instBox.end {
    align-items: end;
}

.searchFormLG input {
    width: 100%;
}

.fee {
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #ff4d4d;
}

.fee strong {
    font-weight: 700;
}

.fee .price {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.fee .txt {
    font-size: 16px;
    line-height: 26px;
}

.fee .arrLinkGray {
    font-weight: 400;
}

.feebtnClose {
    height: 24px;
    width: 24px;
    text-indent: -9999px;
    overflow: hidden;
    background: url(../img/godo2023/ico_modal_close.svg) no-repeat;
    background-size: contain;
}

.instantBox {
    padding: 28px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    border-radius: 8px;
    background: #f7f7f7;
}

.instantBox span {
    display: block;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.instantBox .bulletList, .instantBox .notiCon ul, .notiCon .instantBox ul, .instantBox .acc-menu-cnt .txList03, .acc-menu-cnt .instantBox .txList03,
.instantBox .acc-menu-cnt .txList05, .acc-menu-cnt .instantBox .txList05 {
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}

.tabModalGroup {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabModalBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    min-height: 55px;
    box-sizing: border-box;
    border-bottom: 1px solid #e1e1e1;
    overflow: hidden;
}

.tabModalBtn input {
    position: absolute;
    left: 0;
    opacity: 0;
}

.tabModalBtn .text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.tabModalBtn.checked {
    border-bottom: 2px solid #4130df;
    color: #4130df;
}

.tabModalBtn.checked .text {
    font-weight: 700;
}

.tabModalBtn:has(input:focus-visible), .tabModalBtn:has(input:checked) {
    border-bottom: 2px solid #4130df;
}

.tabModalBtn:has(input:checked) {
    color: #4130df;
}

.tabModalBtn:has(input:checked) .text {
    font-weight: 700;
}

.tabModalBtn:has(input:disabled) {
    border-color: #e1e1e1;
    color: #fff;
}

.bdge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    white-space: nowrap;
    line-height: 1;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background-color: #4130df;
}

.bdge.red {
    background-color: #ff6666;
}

.distbtnClose {
    width: 24px;
    height: 24px;
    text-indent: -9999px;
    overflow: hidden;
    background: url(../img/godo2023/ico_fill_close.svg) no-repeat;
    background-size: contain;
    margin-left: 8px;
}

.distName {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.distName strong {
    font-weight: 500;
    color: #ff4d4d;
}

.distName em.fcB100 {
    font-weight: 700;
}

.disabled .distName strong {
    color: #bfbfbf;
}

.arrLinkCard {
    width: 20px;
    height: 20px;
    background: url(../img/godo2023/ico_link_arr_black_right.svg) no-repeat center;
    background-size: contain;
}

.disabled .arrLinkCard {
    background: url(../img/godo2023/ico_link_arr_gray_right.svg) no-repeat center;
    background-size: contain;
}

.couponItem.dis .bdge {
    background: #bfbfbf;
}

.couponItem.dis .distName {
    color: #bfbfbf;
}

.couponItem.dis .distDesc {
    color: #bfbfbf;
}

.couponItem.dis .labelColumn > span {
    color: #bfbfbf;
    font-size: 18px;
    font-weight: 500;
    line-height: 33px;
}

.couponItem.dis .labelColumn > span > strong {
    font-size: 22px;
    font-weight: 700;
    line-height: 33px;
    vertical-align: -1px;
}

.couponItem.dis .noticeTxt {
    color: #bfbfbf;
}

.couponItem + .couponItem {
    margin-top: 24px;
}

.couponItem .btnRadio {
    display: block;
    width: 100%;
    min-height: 128px;
    padding: 28px 28px 0;
}

.couponItem .btnRadio.checked {
    color: inherit;
}

.couponItem .btnRadio:has(input:checked) {
    color: inherit;
}

.couponItem .fee strong {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.couponItem .fee span {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.couponItem .flexBox, .couponItem .flexEndBox, .couponItem .timeSelInfo, .couponItem .quickBox, .couponItem .storeSearch, .couponItem .visitSelect,
.couponItem .visitInfo, .couponItem .storeTitBox, .couponItem .instBox {
    padding: 20px 20px 0 20px;
}

.couponItem .bulletList, .couponItem .notiCon ul, .notiCon .couponItem ul, .couponItem .acc-menu-cnt .txList03, .acc-menu-cnt .couponItem .txList03,
.couponItem .acc-menu-cnt .txList05, .acc-menu-cnt .couponItem .txList05 {
    padding: 0 20px 20px 20px;
}

.cardDetailItem .imgBox {
    position: relative;
}

.cardDetailItem .imgBox img {
    display: block;
    margin: 0 auto;
}

.cardDetailSwiper .swiper-slide {
    text-align: center;
    padding-top: 20px !important;
}

.cardDetailSwiper .swiper-slide .imgBox {
    position: relative;
    display: inline-block;
}

.cardDetailSwiper .swiper-slide .imgBox .cardBadge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 18px;
    text-align: center;
    box-sizing: border-box;
    position: absolute;
    left: -20px;
    top: -20px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardDetailSwiper .swiper-slide .imgBox .cardBadge.red {
    background-color: #ff4d4d;
    padding: 10px 7px;
}

.cardDetailSwiper .swiper-slide .imgBox .cardBadge.blue {
    background-color: #2e96e6;
    padding: 12px 7px;
}

.cardDetailSwiper .swiper-slide .imgBox img {
    vertical-align: top;
}

.cardDescription {
    justify-content: center;
}

.cardDescription > span {
    margin-left: 4px;
}

.cardText {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.cardText .color {
    color: #4130df;
}

.cardInfo {
    min-height: 200px;
}

.slash {
    flex: 0 0 auto;
    height: 15px;
    width: 1px;
    transform: rotate(30deg);
    background-color: #000;
}

div[data-tab-cont='card'] .slash {
    background-color: #909090;
}

div[data-tab-cont='card'] .noticeList .bulletItem, div[data-tab-cont='card'] .noticeWrap .bulletItem, div[data-tab-cont='card'] .noticeList .modalTable .tableBulletItem, .modalTable div[data-tab-cont='card'] .noticeList .tableBulletItem, div[data-tab-cont='card'] .noticeWrap .modalTable .tableBulletItem, .modalTable div[data-tab-cont='card'] .noticeWrap .tableBulletItem, div[data-tab-cont='card'] .noticeList .notiCon ul li, .notiCon ul div[data-tab-cont='card'] .noticeList li, div[data-tab-cont='card'] .noticeWrap .notiCon ul li, .notiCon ul div[data-tab-cont='card'] .noticeWrap li, div[data-tab-cont='card'] .noticeList .acc-menu-cnt .txList03 li, .acc-menu-cnt .txList03 div[data-tab-cont='card'] .noticeList li, div[data-tab-cont='card'] .noticeWrap .acc-menu-cnt .txList03 li, .acc-menu-cnt .txList03 div[data-tab-cont='card'] .noticeWrap li,
div[data-tab-cont='card'] .noticeList .acc-menu-cnt .txList05 li, .acc-menu-cnt .txList05 div[data-tab-cont='card'] .noticeList li,
div[data-tab-cont='card'] .noticeWrap .acc-menu-cnt .txList05 li, .acc-menu-cnt .txList05 div[data-tab-cont='card'] .noticeWrap li {
    color: #666 !important;
}

.noticeList.sm .btn, .sm.noticeWrap .btn {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    background: url(../img/godo2023/ico_accordian_arrow.svg) no-repeat right center;
}

.noticeList.sm .bulletItem, .sm.noticeWrap .bulletItem, .noticeList.sm .modalTable .tableBulletItem, .modalTable .noticeList.sm .tableBulletItem, .sm.noticeWrap .modalTable .tableBulletItem, .modalTable .sm.noticeWrap .tableBulletItem, .noticeList.sm .notiCon ul li, .notiCon ul .noticeList.sm li, .sm.noticeWrap .notiCon ul li, .notiCon ul .sm.noticeWrap li, .noticeList.sm .acc-menu-cnt .txList03 li, .acc-menu-cnt .txList03 .noticeList.sm li, .sm.noticeWrap .acc-menu-cnt .txList03 li, .acc-menu-cnt .txList03 .sm.noticeWrap li,
.noticeList.sm .acc-menu-cnt .txList05 li, .acc-menu-cnt .txList05 .noticeList.sm li,
.sm.noticeWrap .acc-menu-cnt .txList05 li, .acc-menu-cnt .txList05 .sm.noticeWrap li {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.noticeList.sm .bulletItem a, .sm.noticeWrap .bulletItem a, .noticeList.sm .modalTable .tableBulletItem a, .modalTable .noticeList.sm .tableBulletItem a, .sm.noticeWrap .modalTable .tableBulletItem a, .modalTable .sm.noticeWrap .tableBulletItem a, .noticeList.sm .notiCon ul li a, .notiCon ul .noticeList.sm li a, .sm.noticeWrap .notiCon ul li a, .notiCon ul .sm.noticeWrap li a, .noticeList.sm .acc-menu-cnt .txList03 li a, .acc-menu-cnt .txList03 .noticeList.sm li a, .sm.noticeWrap .acc-menu-cnt .txList03 li a, .acc-menu-cnt .txList03 .sm.noticeWrap li a, .noticeList.sm .acc-menu-cnt .txList05 li a, .acc-menu-cnt .txList05 .noticeList.sm li a, .sm.noticeWrap .acc-menu-cnt .txList05 li a, .acc-menu-cnt .txList05 .sm.noticeWrap li a {
    color: #4130df;
    border-bottom: 1px solid #4130df;
    word-break: break-all;
}

.insurSwiper,
.insDeviceSwiper,
.insConSwiper {
    margin-top: 24px;
    margin-bottom: 60px;
}

.insurItem .info,
.insDeviceItem .info,
.insConItem .info {
    width: 100%;
}

.insurItem .desc,
.insDeviceItem .desc,
.insConItem .desc {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 56px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
}

.insurItem .fee,
.insDeviceItem .fee,
.insConItem .fee {
    justify-content: flex-end;
    margin-top: 48px;
    font-size: 16px;
    line-height: 26px;
}

.insurItem .fee strong,
.insDeviceItem .fee strong,
.insConItem .fee strong {
    font-size: 18px;
    line-height: 28px;
}

.insurItem .btnRadio:has(:checked),
.insDeviceItem .btnRadio:has(:checked),
.insConItem .btnRadio:has(:checked) {
    color: #000;
}

.insurItem .more,
.insDeviceItem .more,
.insConItem .more {
    z-index: 2;
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/godo2023/ico_union.svg) no-repeat center/100%;
    text-indent: -999px;
    overflow: hidden;
}

.insConItem {
    position: relative;
    display: flex;
    padding: 28px;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid #e1e1e1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.insConItem input[type='checkbox'] {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.insConItem.checked {
    padding: 27px;
    border: 2px solid #4130df;
    box-shadow: 0 3px 4px 0 rgba(65, 48, 223, 0.18);
}

.insConItem.checked:after {
    top: 11px;
    right: 11px;
}

.insConItem:has(input:checked) {
    padding: 27px;
    border: 2px solid #4130df;
    box-shadow: 0 3px 4px 0 rgba(65, 48, 223, 0.18);
}

.insConItem:has(input:checked):after {
    top: 11px;
    right: 11px;
}

.insConfirmList {
    padding: 28px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

.insConfirmItem + .insConfirmItem {
    margin-top: 12px;
}

.insConfirmItem .name {
    font-size: 18px;
    color: #444;
}

.insDetail {
    position: relative;
}

div:has(.insDeviceSwiper) .itemTitle.mt60,
div:has(.insConSwiper) .itemTitle.mt60 {
    margin-top: 0px !important;
}

body .wrap.godo2023 .container,
body .wrap.godo2023 .content {
    font-family: 'notosans', sans-serif !important;
}

body .wrap.godo2023 .tab-menu-wrap .tab-item .the-number {
    color: #8d83ec;
}

body .wrap.godo2023 .tab-menu-wrap .tab-item .item {
    font-weight: 500;
    color: #909090;
}

body .wrap.godo2023 .tab-menu-wrap .tab-item.on .the-number {
    color: #4130df;
}

body .wrap.godo2023 .tab-menu-wrap .tab-item.on .item {
    font-weight: 700;
    color: #000;
}

body .wrap.godo2023 .cart-empty-wrap .cart-empty-txt-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 4px;
    background-color: #f7f7f7;
    padding: 28px;
    border-radius: 8px;
}

body .wrap.godo2023 .cart-empty-wrap .cart-empty-txt-wrap > p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #909090;
}

body .wrap.godo2023 .cart-empty-wrap .cart-empty-txt-wrap .big-txt {
    position: relative;
    padding-top: 72px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #000;
}

body .wrap.godo2023 .cart-empty-wrap .cart-empty-txt-wrap .big-txt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: url(../img/godo2023/ico_cart_nodata.svg) center center no-repeat;
}

body .wrap.godo2023 .cart-empty-wrap .cart-empty-txt-wrap .commt {
    margin-top: 0;
}

body .wrap.godo2023 .cart-empty-wrap .cart-empty-txt-wrap .commt a {
    margin-right: 2px;
    font-size: 13px;
    line-height: 23px;
    color: #4130df;
}

body .wrap.godo2023 .cart-empty-wrap .cart-empty-txt-wrap .commt a::after {
    background: #4130df;
}

body .wrap.godo2023 .cart-empty-wrap .btns-wrap {
    margin: 80px 0 50px;
    display: flex;
    justify-content: center;
}

body .wrap.godo2023 .cart-empty-wrap .btns-wrap a {
    width: 385px;
    border-radius: 8px;
}

body .wrap.godo2023 .selec-wrap {
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body .wrap.godo2023 .selec-wrap .selc-del {
    opacity: 1;
    margin-left: 0;
    padding-left: 0;
    border: 1px solid #909090;
    border-radius: 4px;
}

body .wrap.godo2023 .selec-wrap .selc-del::before {
    content: none;
}

body .wrap.godo2023 .selec-wrap .selc-del > button {
    font-size: 13px;
    line-height: 23px;
    color: #666;
    padding: 5px 12px;
    background: #fff;
}

body .wrap.godo2023 .selec-wrap .selc-del > button:hover {
    border-color: #909090;
    background: #f7f7f7;
}

body .wrap.godo2023 .selec-wrap .selc-del > button:active {
    border-color: #d9d6f9;
    background: #d9d6f9;
}

body .wrap.godo2023 .selec-wrap .selc-del > button[disabled] {
    color: #fff;
    border-color: #e1e1e1;
    background: #e1e1e1;
}

body .wrap.godo2023 .selec-wrap .cart-check > label {
    font-size: 16px;
    color: #000;
}

body .wrap.godo2023 .my-cart-tbl tr:first-child {
    border-bottom: 1px solid #e1e1e1;
}

body .wrap.godo2023 .my-cart-tbl tr:first-child td {
    border-top: 1px solid #000;
}

body .wrap.godo2023 .my-cart-tbl tr:nth-child(2) td {
    border-top: 1px solid #e1e1e1;
}

body .wrap.godo2023 .my-cart-tbl tr td {
    border-top: 1px solid #efefef;
}

body .wrap.godo2023 .my-cart-tbl .cart-pd-group-tit {
    padding: 12px 0;
    line-height: 26px;
}

body .wrap.godo2023 .my-cart-tbl .tbl-check {
    text-align: start;
}

body .wrap.godo2023 .my-cart-tbl .tbl-check,
body .wrap.godo2023 .my-cart-tbl .cart-thumb-wrap,
body .wrap.godo2023 .my-cart-tbl .tbl-del {
    padding: 40px 0;
}

body .wrap.godo2023 .my-cart-tbl .cart-btn-del {
    width: 20px;
    height: 20px;
}

body .wrap.godo2023 .my-cart-tbl .cart-desc-btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body .wrap.godo2023 .my-cart-tbl .cart-btn,
body .wrap.godo2023 .my-cart-tbl .all-btns-wrap .cart-btn {
    width: 200px;
    padding: 13px 12px;
    height: 54px;
    border-radius: 8px;
}

body .wrap.godo2023 .my-cart-tbl .cost-desc {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #4130df;
}

body .wrap.godo2023 .my-cart-tbl .cost-desc::after {
    content: '';
    position: static;
    display: inline-block;
    height: 12px;
    width: 12px;
    vertical-align: -1px;
    background: url(../img/godo2023/ico_link_arr.svg) no-repeat 50% 50%;
}

body .wrap.godo2023 .my-cart-tbl .cart-thumb-wrap .cart-thumb {
    display: block;
    width: 160px;
    height: 160px;
}

body .wrap.godo2023 .my-cart-tbl .cart-thumb-wrap .cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body .wrap.godo2023 .my-cart-tbl .cart-thumb-wrap .stock-num {
    width: fit-content;
    padding: 0 12px;
    margin: 0 auto;
    background-color: #75737f;
    font-size: 13px;
    font-weight: 700;
    height: 32px;
    line-height: 32px;
}

body .wrap.godo2023 .my-cart-tbl .cart-thumb-wrap .stock-num span {
    margin-left: 0;
    letter-spacing: normal;
    font-size: inherit;
}

body .wrap.godo2023 .my-cart-tbl .soldOut .cart-thumb,
body .wrap.godo2023 .my-cart-tbl .change .cart-thumb {
    position: relative;
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
}

body .wrap.godo2023 .my-cart-tbl .soldOut .cart-thumb::before,
body .wrap.godo2023 .my-cart-tbl .change .cart-thumb::before {
    content: '상품 변경 필요';
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    z-index: 2;
}

body .wrap.godo2023 .my-cart-tbl .soldOut .prodDesc .detail,
body .wrap.godo2023 .my-cart-tbl .change .prodDesc .detail {
    min-height: auto;
}

body .wrap.godo2023 .my-cart-tbl .soldOut .prodDesc .detail > li,
body .wrap.godo2023 .my-cart-tbl .soldOut .prodDesc .detail .price,
body .wrap.godo2023 .my-cart-tbl .change .prodDesc .detail > li,
body .wrap.godo2023 .my-cart-tbl .change .prodDesc .detail .price {
    color: #bfbfbf;
}

body .wrap.godo2023 .my-cart-tbl .soldOut .cart-thumb::before {
    content: '품절';
}

body .wrap.godo2023 .cart-check input[type='checkbox'] + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    width: 20px;
    height: 20px;
    background: url(../img/godo2023/ico_checkbox_off.svg) center center/cover no-repeat;
    vertical-align: middle;
}

body .wrap.godo2023 .cart-check input[type='checkbox']:checked + label:before {
    background-image: url(../img/godo2023/ico_checkbox_on.svg);
}

body .wrap.godo2023 .my-cart-list-area {
    margin-top: 12px;
}

body .wrap.godo2023 .cart-noti-list {
    padding-top: 12px;
    border-top: none;
}

body .wrap.godo2023 .cart-noti-list li {
    letter-spacing: normal;
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    color: #909090;
    display: flex;
}

body .wrap.godo2023 .cart-noti-list li::before {
    color: #bfbfbf;
    width: 8px;
}

body .wrap.godo2023 .cart-noti-list li span {
    margin-left: 3px;
}

body .wrap.godo2023 .cart-noti-list li + li {
    margin-top: 8px;
}

body .wrap.godo2023 .my-cart-list-device .my-cart-tbl td.cart-date {
    padding: 12px 0;
    line-height: 26px;
}

body .wrap.godo2023 .my-cart-list-device .my-cart-tbl td.tbl-del {
    position: relative;
}

body .wrap.godo2023 .my-cart-list-device .my-cart-tbl td.cart-desc-wrap {
    padding: 40px 0;
}

body .wrap.godo2023 .my-cart-list-device .my-cart-tbl .cart-btn-del {
    width: 20px;
    height: 20px;
    margin-left: 20px;
}

body .wrap.godo2023 .my-cart-list-device .prodInfo {
    display: flex;
    column-gap: 60px;
    width: 100%;
    padding-left: 20px;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .all-btns-wrap {
    padding: 64px 20px;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .all-btns-wrap > a {
    float: right;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-acc-group-tit {
    padding: 0;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-desc-wrap {
    padding: 40px 20px;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-desc-wrap .cart-desc {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-desc-wrap .cart-desc dl dd {
    float: none;
    width: auto;
    letter-spacing: normal;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-desc-wrap .cart-desc dl dt {
    width: auto;
    margin-right: 12px;
    letter-spacing: normal;
    color: #666;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-desc-wrap .cart-desc .option-change {
    margin-left: 0;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-desc-wrap .cart-desc .option-change a {
    font-size: 13px;
    line-height: 23px;
    color: #4130df;
    letter-spacing: 0;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-desc-wrap .cart-desc .option-change a::after {
    background: #4130df;
    bottom: -2px;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-desc-wrap .textInfoRed {
    margin-top: 0;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-desc-wrap .textInfoRed + .device-type {
    margin-top: 4px;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-desc-wrap .device-type {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-desc-wrap .device-name {
    margin-top: 4px;
    letter-spacing: normal;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    color: #000;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-desc-wrap .cart-desc-box {
    display: flex;
    column-gap: 40px;
    align-items: center;
    margin-top: 20px;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .cart-desc-wrap .cart-desc-box > li {
    width: 100%;
    display: flex;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .acc-cost-num .acc-num {
    margin: 0;
    margin-top: 12px;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .acc-cost-num .acc-num button {
    width: 32px;
    height: 32px;
    color: #444;
    font-weight: 700;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .acc-cost-num .acc-num .cart-btn-minus {
    border-radius: 4px 0 0 4px;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .acc-cost-num .acc-num .cart-btn-plus {
    border-radius: 0 4px 4px 0;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .acc-cost-num .acc-num input {
    width: 49px;
    height: 32px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .acc-cost-num .acc-cost {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 2px;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: #ff4d4d;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .acc-cost-num .acc-cost span {
    font-size: 26px;
    font-weight: 700;
    line-height: 40px;
    color: #ff4d4d;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-wrap {
    padding: 20px 44px 20px 0;
    border-top: 1px solid #e1e1e1;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a {
    width: 300px;
    height: 68px;
    border-radius: 8px;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a span {
    font-weight: 500;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-cost .total-cost-tag {
    font-size: 18px;
    line-height: 42px;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-cost .total-cost {
    display: flex;
    align-items: center;
    column-gap: 2px;
    font-size: 26px;
    font-weight: 400;
    line-height: 40px;
    color: #ff4d4d;
}

body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-cost .total-cost span {
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
    color: #ff4d4d;
}

body .wrap.godo2023 .my-cart-list-internet-iptv .device-box:last-child {
    border-bottom: 1px solid #000;
}

body .wrap.godo2023 .my-cart-list-internet-iptv .cart-check label {
    font-weight: 700;
}

body .wrap.godo2023 .my-cart-list-internet-iptv .selec-wrap > .cart-check > label {
    font-weight: 400;
}

body .wrap.godo2023 .my-cart-list-internet-iptv .cost {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: 900;
    color: #909090;
}

body .wrap.godo2023 .my-cart-list-internet-iptv .cost .cost-unit {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: #909090;
}

body .wrap.godo2023 .my-cart-list-internet-iptv .cost.point {
    color: #ff4d4d;
}

body .wrap.godo2023 .my-cart-list-internet-iptv .cost.point .cost-unit {
    color: inherit;
}

body .wrap.godo2023 .my-cart-list-internet-iptv .txt-desc-list {
    border-top: none;
}

body .wrap.godo2023 .modal .modal-title {
    font-weight: bold;
}

body .wrap.godo2023 .modal:not(.modal-alert):not(.modal-no-header) .modal-body {
    border-radius: 12px;
}

body .wrap.godo2023 .modal:not(.modal-alert):not(.modal-no-header) .modal-header {
    border-bottom: none;
}

body .wrap.godo2023 .modal:not(.modal-alert):not(.modal-no-header) .btn-close {
    z-index: 2;
    position: absolute;
    top: 40px;
    right: 40px;
    height: 40px;
    width: 40px;
    text-indent: -9999px;
    overflow: hidden;
    background: url(../img/godo2023/ico_modal_close.svg) no-repeat 50% 50%;
}

body .wrap.godo2023 .modal-alert .paragraph,
body .wrap.godo2023 .modal-no-header .paragraph {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

body .wrap.godo2023 .modal-alert .btn-primary,
body .wrap.godo2023 .modal-alert .btn-semi,
body .wrap.godo2023 .modal-no-header .btn-primary,
body .wrap.godo2023 .modal-no-header .btn-semi {
    height: 50px;
    border-radius: 0;
}

body .wrap.godo2023 .modal-alert .btn-close,
body .wrap.godo2023 .modal-no-header .btn-close {
    top: 43px;
    right: 40px;
    height: 23px;
    width: 23px;
    background: url(../img/godo2023/ico_alert_close.svg) no-repeat 50% 50%;
}

.tGiftswiper .swiper-slide {
    margin-right: 100px;
}

.tagRowMoreArea {
    text-align: center;
}

.tagRowMoreArea .tagRowMore {
    margin: 0 auto;
    padding: 0 26px;
    height: 48px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.tagRowMoreArea .tagRowMore span {
    display: block;
    padding: 0 20px 0 0;
    background: #fff url(../img/godo2023/img_tagrow_more.svg) no-repeat right center;
    font-size: 16px;
    color: #444;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
}

.adrRsltGreyArea {
    padding: 100px 100px 28px;
    background: #f7f7f7 url(../img/godo2023/img_adr_nodata.svg) no-repeat center 28px;
    text-align: center;
    font-size: 14px;
    color: #909090;
    font-weight: 400;
    line-height: 24px;
    border-radius: 8px;
}

.bulletList.modalBulletList .bulletItem, .notiCon ul.modalBulletList .bulletItem, .acc-menu-cnt .modalBulletList.txList03 .bulletItem, .acc-menu-cnt .modalBulletList.txList05 .bulletItem, .bulletList.modalBulletList .modalTable .tableBulletItem, .modalTable .bulletList.modalBulletList .tableBulletItem, .notiCon ul.modalBulletList .modalTable .tableBulletItem, .modalTable .notiCon ul.modalBulletList .tableBulletItem, .acc-menu-cnt .modalBulletList.txList03 .modalTable .tableBulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList03 .tableBulletItem, .acc-menu-cnt .modalBulletList.txList05 .modalTable .tableBulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList05 .tableBulletItem, .bulletList.modalBulletList .notiCon ul li, .notiCon ul .bulletList.modalBulletList li, .notiCon ul.modalBulletList li, .bulletList.modalBulletList .acc-menu-cnt .txList03 li, .acc-menu-cnt .txList03 .bulletList.modalBulletList li, .acc-menu-cnt .modalBulletList.txList03 li,
.bulletList.modalBulletList .acc-menu-cnt .txList05 li, .acc-menu-cnt .txList05 .bulletList.modalBulletList li,
.acc-menu-cnt .modalBulletList.txList05 li {
    font-size: 13px;
    color: #909090;
    font-weight: 400;
    line-height: 23px;
}

.bulletList.modalBulletList .bulletItem + .bulletItem, .notiCon ul.modalBulletList .bulletItem + .bulletItem, .acc-menu-cnt .modalBulletList.txList03 .bulletItem + .bulletItem, .acc-menu-cnt .modalBulletList.txList05 .bulletItem + .bulletItem, .bulletList.modalBulletList .modalTable .tableBulletItem + .bulletItem, .modalTable .bulletList.modalBulletList .tableBulletItem + .bulletItem, .notiCon ul.modalBulletList .modalTable .tableBulletItem + .bulletItem, .modalTable .notiCon ul.modalBulletList .tableBulletItem + .bulletItem, .acc-menu-cnt .modalBulletList.txList03 .modalTable .tableBulletItem + .bulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList03 .tableBulletItem + .bulletItem, .acc-menu-cnt .modalBulletList.txList05 .modalTable .tableBulletItem + .bulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList05 .tableBulletItem + .bulletItem, .bulletList.modalBulletList .notiCon ul li + .bulletItem, .notiCon ul .bulletList.modalBulletList li + .bulletItem, .notiCon ul.modalBulletList li + .bulletItem, .acc-menu-cnt .modalBulletList.txList03 .notiCon ul li + .bulletItem, .acc-menu-cnt .modalBulletList.txList05 .notiCon ul li + .bulletItem, .bulletList.modalBulletList .acc-menu-cnt .txList03 li + .bulletItem, .acc-menu-cnt .txList03 .bulletList.modalBulletList li + .bulletItem, .notiCon ul.modalBulletList .acc-menu-cnt .txList03 li + .bulletItem, .acc-menu-cnt .txList03 .notiCon ul.modalBulletList li + .bulletItem, .acc-menu-cnt .modalBulletList.txList03 li + .bulletItem, .acc-menu-cnt .modalBulletList.txList05 .txList03 li + .bulletItem, .bulletList.modalBulletList .acc-menu-cnt .txList05 li + .bulletItem, .acc-menu-cnt .txList05 .bulletList.modalBulletList li + .bulletItem, .notiCon ul.modalBulletList .acc-menu-cnt .txList05 li + .bulletItem, .acc-menu-cnt .txList05 .notiCon ul.modalBulletList li + .bulletItem, .acc-menu-cnt .modalBulletList.txList03 .txList05 li + .bulletItem, .acc-menu-cnt .modalBulletList.txList05 li + .bulletItem, .bulletList.modalBulletList .modalTable .bulletItem + .tableBulletItem, .modalTable .bulletList.modalBulletList .bulletItem + .tableBulletItem, .notiCon ul.modalBulletList .modalTable .bulletItem + .tableBulletItem, .modalTable .notiCon ul.modalBulletList .bulletItem + .tableBulletItem, .acc-menu-cnt .modalBulletList.txList03 .modalTable .bulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList03 .bulletItem + .tableBulletItem, .acc-menu-cnt .modalBulletList.txList05 .modalTable .bulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList05 .bulletItem + .tableBulletItem, .bulletList.modalBulletList .modalTable .tableBulletItem + .tableBulletItem, .modalTable .bulletList.modalBulletList .tableBulletItem + .tableBulletItem, .notiCon ul.modalBulletList .modalTable .tableBulletItem + .tableBulletItem, .modalTable .notiCon ul.modalBulletList .tableBulletItem + .tableBulletItem, .acc-menu-cnt .modalBulletList.txList03 .modalTable .tableBulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList03 .tableBulletItem + .tableBulletItem, .acc-menu-cnt .modalBulletList.txList05 .modalTable .tableBulletItem + .tableBulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList05 .tableBulletItem + .tableBulletItem, .bulletList.modalBulletList .notiCon ul .modalTable li + .tableBulletItem, .modalTable .bulletList.modalBulletList .notiCon ul li + .tableBulletItem, .notiCon ul .bulletList.modalBulletList .modalTable li + .tableBulletItem, .modalTable .notiCon ul .bulletList.modalBulletList li + .tableBulletItem, .notiCon ul.modalBulletList .modalTable li + .tableBulletItem, .modalTable .notiCon ul.modalBulletList li + .tableBulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList03 .notiCon ul li + .tableBulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList05 .notiCon ul li + .tableBulletItem, .bulletList.modalBulletList .acc-menu-cnt .txList03 .modalTable li + .tableBulletItem, .modalTable .bulletList.modalBulletList .acc-menu-cnt .txList03 li + .tableBulletItem, .acc-menu-cnt .txList03 .bulletList.modalBulletList .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList03 .bulletList.modalBulletList li + .tableBulletItem, .modalTable .notiCon ul.modalBulletList .acc-menu-cnt .txList03 li + .tableBulletItem, .acc-menu-cnt .modalBulletList.txList03 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList03 li + .tableBulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList05 .txList03 li + .tableBulletItem, .bulletList.modalBulletList .acc-menu-cnt .txList05 .modalTable li + .tableBulletItem, .modalTable .bulletList.modalBulletList .acc-menu-cnt .txList05 li + .tableBulletItem, .acc-menu-cnt .txList05 .bulletList.modalBulletList .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .txList05 .bulletList.modalBulletList li + .tableBulletItem, .modalTable .notiCon ul.modalBulletList .acc-menu-cnt .txList05 li + .tableBulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList03 .txList05 li + .tableBulletItem, .acc-menu-cnt .modalBulletList.txList05 .modalTable li + .tableBulletItem, .modalTable .acc-menu-cnt .modalBulletList.txList05 li + .tableBulletItem, .bulletList.modalBulletList .notiCon ul .bulletItem + li, .notiCon ul .bulletList.modalBulletList .bulletItem + li, .notiCon ul.modalBulletList .bulletItem + li, .acc-menu-cnt .modalBulletList.txList03 .notiCon ul .bulletItem + li, .acc-menu-cnt .modalBulletList.txList05 .notiCon ul .bulletItem + li, .bulletList.modalBulletList .modalTable .notiCon ul .tableBulletItem + li, .notiCon ul .bulletList.modalBulletList .modalTable .tableBulletItem + li, .modalTable .bulletList.modalBulletList .notiCon ul .tableBulletItem + li, .notiCon ul .modalTable .bulletList.modalBulletList .tableBulletItem + li, .notiCon ul.modalBulletList .modalTable .tableBulletItem + li, .modalTable .notiCon ul.modalBulletList .tableBulletItem + li, .acc-menu-cnt .modalBulletList.txList03 .modalTable .notiCon ul .tableBulletItem + li, .modalTable .acc-menu-cnt .modalBulletList.txList03 .notiCon ul .tableBulletItem + li, .acc-menu-cnt .modalBulletList.txList05 .modalTable .notiCon ul .tableBulletItem + li, .modalTable .acc-menu-cnt .modalBulletList.txList05 .notiCon ul .tableBulletItem + li, .bulletList.modalBulletList .notiCon ul li + li, .notiCon ul .bulletList.modalBulletList li + li, .notiCon ul.modalBulletList li + li, .bulletList.modalBulletList .acc-menu-cnt .txList03 .notiCon ul li + li, .bulletList.modalBulletList .acc-menu-cnt .txList05 .notiCon ul li + li, .bulletList.modalBulletList .acc-menu-cnt .txList03 .bulletItem + li, .acc-menu-cnt .txList03 .bulletList.modalBulletList .bulletItem + li, .notiCon ul.modalBulletList .acc-menu-cnt .txList03 .bulletItem + li, .acc-menu-cnt .txList03 .notiCon ul.modalBulletList .bulletItem + li, .acc-menu-cnt .modalBulletList.txList03 .bulletItem + li, .acc-menu-cnt .modalBulletList.txList05 .txList03 .bulletItem + li, .bulletList.modalBulletList .modalTable .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .bulletList.modalBulletList .modalTable .tableBulletItem + li, .modalTable .bulletList.modalBulletList .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .modalTable .bulletList.modalBulletList .tableBulletItem + li, .notiCon ul.modalBulletList .modalTable .acc-menu-cnt .txList03 .tableBulletItem + li, .modalTable .notiCon ul.modalBulletList .acc-menu-cnt .txList03 .tableBulletItem + li, .acc-menu-cnt .modalBulletList.txList03 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .modalBulletList.txList03 .tableBulletItem + li, .acc-menu-cnt .modalBulletList.txList05 .modalTable .txList03 .tableBulletItem + li, .modalTable .acc-menu-cnt .modalBulletList.txList05 .txList03 .tableBulletItem + li, .acc-menu-cnt .txList03 .bulletList.modalBulletList .notiCon ul li + li, .acc-menu-cnt .modalBulletList.txList03 .notiCon ul li + li, .bulletList.modalBulletList .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .txList03 .bulletList.modalBulletList li + li, .notiCon ul.modalBulletList .acc-menu-cnt .txList03 li + li, .acc-menu-cnt .modalBulletList.txList03 li + li, .acc-menu-cnt .txList05 .bulletList.modalBulletList .txList03 li + li, .acc-menu-cnt .txList05 .notiCon ul.modalBulletList .txList03 li + li,
.bulletList.modalBulletList .acc-menu-cnt .txList05 .bulletItem + li, .acc-menu-cnt .txList05 .bulletList.modalBulletList .bulletItem + li,
.notiCon ul.modalBulletList .acc-menu-cnt .txList05 .bulletItem + li, .acc-menu-cnt .txList05 .notiCon ul.modalBulletList .bulletItem + li,
.acc-menu-cnt .modalBulletList.txList03 .txList05 .bulletItem + li,
.acc-menu-cnt .modalBulletList.txList05 .bulletItem + li,
.bulletList.modalBulletList .modalTable .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .bulletList.modalBulletList .modalTable .tableBulletItem + li, .modalTable .bulletList.modalBulletList .acc-menu-cnt .txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .modalTable .bulletList.modalBulletList .tableBulletItem + li,
.notiCon ul.modalBulletList .modalTable .acc-menu-cnt .txList05 .tableBulletItem + li, .modalTable .notiCon ul.modalBulletList .acc-menu-cnt .txList05 .tableBulletItem + li,
.acc-menu-cnt .modalBulletList.txList03 .modalTable .txList05 .tableBulletItem + li, .modalTable .acc-menu-cnt .modalBulletList.txList03 .txList05 .tableBulletItem + li,
.acc-menu-cnt .modalBulletList.txList05 .modalTable .tableBulletItem + li, .modalTable .acc-menu-cnt .modalBulletList.txList05 .tableBulletItem + li, .acc-menu-cnt .txList05 .bulletList.modalBulletList .notiCon ul li + li,
.acc-menu-cnt .modalBulletList.txList05 .notiCon ul li + li, .acc-menu-cnt .txList03 .bulletList.modalBulletList .txList05 li + li, .acc-menu-cnt .txList03 .notiCon ul.modalBulletList .txList05 li + li,
.acc-menu-cnt .modalBulletList.txList05 .txList03 li + li,
.bulletList.modalBulletList .acc-menu-cnt .txList05 li + li, .acc-menu-cnt .txList05 .bulletList.modalBulletList li + li,
.notiCon ul.modalBulletList .acc-menu-cnt .txList05 li + li,
.acc-menu-cnt .modalBulletList.txList03 .txList05 li + li,
.acc-menu-cnt .modalBulletList.txList05 li + li {
    margin-top: 4px;
}

.insurItem.insurItemCursor input[type=radio] {
    cursor: pointer;
}

.insurItem .btnRadio input[type='radio'] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.insDeviceItem .btnRadio input[type='radio'] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.notiCon {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.notiCon strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: #000;
}

.notiCon ul li {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.notiCon ul li + li {
    margin-top: 8px;
}

.notiCon ul li strong {
    font-size: 16px;
    line-height: 26px;
}

.notiCon b {
    font-weight: 400;
}

.notiCon b span {
    color: #666;
}

.notiCon + strong {
    margin-top: 60px;
}

.formItemColumn.moCarrierSel .selectItem, .formItemColumn.moCarrierSel .selectCheckItem {
    flex: 0 0 348px;
}

.hyeTitleArea .hyeTitle {
    display: none;
    font-size: 22px;
    line-height: 32px;
    color: #000;
}

.hyeTitleArea ul {
    margin-top: 20px;
}

.hyeTitleArea ul li {
    position: relative;
    padding-left: 11px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.hyeTitleArea ul li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #bfbfbf;
}

.hyeTitleArea ul li + li {
    margin-top: 8px;
}

.hyeImgArea {
    margin-top: 24px;
}

.hyeContents {
    margin-top: 50px;
}

.hyeContents .hyeDesc {
    display: block;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
}

.hyeContents .hyeInfo {
    margin-top: 60px;
}

.hyeContents .hyeInfo strong {
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.hyeContents ul {
    margin-top: 20px;
}

.hyeContents ul li {
    position: relative;
    padding-left: 11px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.hyeContents ul li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #bfbfbf;
}

.hyeContents ul li + li {
    margin-top: 8px;
}

.hyeContents ol {
    margin-top: 20px;
}

.hyeContents ol li {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.hyeContents ol li + li {
    margin-top: 8px;
}

.hyeContents .hyeNotice {
    margin-top: 60px;
}

.hyeContents .hyeNotice strong {
    display: block;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
}

.hyeContents .hyeTable {
    margin: 24px 0 0;
}

.hyeContents .hyeTable table {
    min-width: 100%;
    font-size: 13px;
    line-height: 23px;
    border-top: 1px solid #efefef;
    border-spacing: 0;
}

.hyeContents .hyeTable table th {
    font-weight: 400;
    padding: 12px 8px;
    color: #666;
    background-color: #f7f7f7;
    border: 1px solid #efefef;
    border-top: none;
    border-left: none;
    text-align: center;
}

.hyeContents .hyeTable table td {
    padding: 12px 12px;
    color: #909090;
    border: 1px solid #efefef;
    border-top: none;
    border-left: none;
    text-align: center;
    vertical-align: top;
}

.hyeContents .hyeTable table td li {
    text-align: left;
}

.hyeContents .hyeTable table th:last-child,
.hyeContents .hyeTable table td:last-child {
    border-right: none;
}

.hyeContents li ul,
.hyeContents li ol {
    margin-top: 8px;
}

.hyeContents ul li li {
    padding-left: 0;
    color: #909090;
}

.hyeContents ul li li:before {
    display: none;
}

.hyeDesc {
    display: block;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin-top: 60px;
}

.hyeInfo {
    margin-top: 40px;
}

.hyeInfo strong {
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.hyeInfo ul {
    margin-top: 20px;
}

.hyeInfo ul li {
    position: relative;
    padding-left: 11px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.hyeInfo ul li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #bfbfbf;
}

.hyeInfo ul li + li {
    margin-top: 8px;
}

.hyeInfo ol {
    margin-top: 20px;
}

.hyeInfo ol li {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.hyeInfo ol li + li {
    margin-top: 8px;
}

.hyeInfo .table-term {
    min-width: 100%;
    font-size: 13px;
    line-height: 23px;
    border-top: 1px solid #efefef;
    border-spacing: 0;
}

.hyeInfo .table-term th {
    font-weight: 400;
    padding: 12px 8px;
    color: #666;
    background-color: #f7f7f7;
    border: 1px solid #efefef;
    border-top: none;
    border-left: none;
    text-align: center;
}

.hyeInfo .table-term td {
    padding: 12px 12px;
    color: #909090;
    border: 1px solid #efefef;
    border-top: none;
    border-left: none;
    text-align: center;
    vertical-align: top;
}

.hyeInfo .table-term td li {
    text-align: left;
}

.hyeInfo .table-term th:last-child,
.hyeInfo .table-term td:last-child {
    border-right: none;
}

.hyeInfo:not(:has(strong)) {
    margin-top: 25px;
}

.hyeNoti {
    margin-top: 60px;
}

.hyeNoti strong {
    font-size: 22px;
    line-height: 32px;
}

.acc-menu-cnt .tit01 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 20px;
}

.acc-menu-cnt .tit01:first-child {
    font-size: 22px;
    line-height: 32px;
}

.acc-menu-cnt .txDiv {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 20px;
}

.acc-menu-cnt .txList03,
.acc-menu-cnt .txList05 {
    margin-bottom: 20px;
}

.acc-menu-cnt .txList03 li,
.acc-menu-cnt .txList05 li {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.acc-menu-cnt .txList03 li + li,
.acc-menu-cnt .txList05 li + li {
    margin-top: 8px;
}

.acc-menu-cnt .txList03 li strong,
.acc-menu-cnt .txList05 li strong {
    font-weight: 400;
}

.acc-menu-cnt .txTit03 {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

.acc-menu-cnt .tbl .tableComm {
    font-size: 13px;
    line-height: 23px;
    margin: 20px 0 0;
}

.acc-menu-cnt .tbl .tableComm th,
.acc-menu-cnt .tbl .tableComm td {
    border: 1px solid #e1e1e1;
}

.acc-menu-cnt .tbl .tableComm th {
    width: 120px;
    font-weight: 400;
    padding: 12px 8px;
    color: #666;
    background-color: #f7f7f7;
    border-left: none;
    text-align: center;
}

.acc-menu-cnt .tbl .tableComm td {
    padding: 12px 12px;
    color: #909090;
    border-right: none;
}

.acc-menu-cnt .tbl .tableComm td strong {
    font-weight: 400;
}

.tDaPack.additional-service .addition-serv-detail .cont-list {
    margin-top: 20px;
}

.tDaPack.additional-service .addition-serv-detail .c-term {
    padding: 0;
}

.tDaPack.additional-service .addition-serv-detail .c-term .table-term {
    margin-top: 20px;
    margin-bottom: 0px;
}

.service-notice-area .addition-serv-area .cont-tit {
    margin-top: 20px;
    font-weight: 700;
}

.service-notice-area .addition-serv-area .cont-list {
    margin-top: 20px;
}

.service-notice-area .addition-serv-area .cont-list li {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.service-notice-area .addition-serv-area .cont-list li .icon-list {
    color: #bfbfbf;
}

.service-notice-area .addition-serv-area .cont-list li + li {
    margin-top: 8px;
}

.insDetailSwiper .addition-serv-area .addition-serv-detail .cont-txt {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.insDetailSwiper .addition-serv-area .addition-serv-detail .cont-tit {
    line-height: 28px;
    font-weight: 700;
}

.insDetailSwiper .addition-serv-area .addition-serv-detail .cont-list {
    margin-top: 20px;
}

.insDetailSwiper .addition-serv-area .addition-serv-detail .cont-list li + li {
    margin-top: 8px;
}

.hyeDesc {
    display: block;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin-top: 60px;
}

.hyeDesc span {
    display: inline-block;
    margin-top: 8px;
    font-size: 16px;
    line-height: 26px;
    color: #666;
    font-weight: 400;
}

.addition-serv-area .addition-img-area {
    margin-top: 0;
    margin-bottom: 40px;
}

.addition-serv-area .addition-serv-detail {
    margin-bottom: 40px;
}

.addition-serv-area .addition-serv-detail:last-child {
    margin-bottom: 0;
}

.addition-serv-area .addition-serv-detail .info-tit {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.addition-serv-area .addition-serv-detail .info-list {
    margin-top: 12px;
}

.addition-serv-area .addition-serv-detail .info-list ol li {
    padding-left: 0;
}

.addition-serv-area .addition-serv-detail .info-list ol li:after {
    display: none;
}

.addition-serv-area .addition-serv-detail .info-list li {
    position: relative;
    padding-left: 11px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.addition-serv-area .addition-serv-detail .info-list li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #bfbfbf;
}

.addition-serv-area .addition-serv-detail .info-list li + li {
    margin-top: 8px;
}

.addition-serv-area .addition-serv-detail .info-list li li {
    padding-left: 0;
}

.addition-serv-area .addition-serv-detail .info-list li li:before {
    display: none;
}

.addition-serv-area .addition-serv-detail .info-list li.desc {
    padding-left: 0;
}

.addition-serv-area .addition-serv-detail .info-list li.desc:before {
    display: none;
}

.addition-serv-area .addition-serv-detail .info-list + li {
    margin-top: 8px;
}

.addition-serv-area .addition-serv-detail .info-list.dep2 {
    margin-top: 8px;
}

.addition-serv-area .addition-serv-detail .info-list.dep2 li {
    padding-left: 11px;
    color: #909090;
}

.addition-serv-area .addition-serv-detail .info-list.dep2 li:before {
    position: absolute;
    top: 13px;
    left: 0;
    content: '';
    display: block;
    width: 5px;
    height: 1px;
    background: #b3b3b3;
}

.addition-serv-area .c-term th {
    font-size: 13px !important;
    color: #666 !important;
}

.addition-serv-area .c-term td {
    font-size: 13px !important;
    color: #909090 !important;
}

.addition-serv-notice {
    margin-top: 20px;
}

.addition-serv-notice .info-tit {
    margin: 0;
    padding: 0;
    border-bottom: none;
    font-size: 18px;
    line-height: 28px;
}

.addition-serv-notice .info-list {
    margin-top: 17px;
}

.addition-serv-notice .info-list li {
    position: relative;
    padding-left: 11px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.addition-serv-notice .info-list li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #bfbfbf;
}

.addition-serv-notice .info-list li + li {
    margin-top: 8px;
}

.addition-serv-notice .info-list li li {
    padding-left: 0;
    color: #909090;
}

.addition-serv-notice .info-list li li:before {
    display: none;
}

.addition-serv-notice .info-list + .info-tit {
    margin-top: 40px;
}

section[data-modal-id='ins_detail'] {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

section[data-modal-id='ins_detail'] h4 {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 40px;
    color: #000;
    border-bottom: none !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}

section[data-modal-id='ins_detail'] h4:first-child {
    margin-top: 0;
}

section[data-modal-id='ins_detail'] h4 + p {
    margin-top: 8px;
}

section[data-modal-id='ins_detail'] h4 + .table-term {
    margin-top: 20px;
}

section[data-modal-id='ins_detail'] .subTitle {
    color: #000;
}

section[data-modal-id='ins_detail'] li {
    font-size: 16px;
    line-height: 26px;
}

section[data-modal-id='ins_detail'] li + li {
    margin-top: 8px;
}

section[data-modal-id='ins_detail'] ol,
section[data-modal-id='ins_detail'] ul {
    margin-top: 20px;
}

section[data-modal-id='ins_detail'] ol + .c-term,
section[data-modal-id='ins_detail'] ul + .c-term {
    margin-top: 40px;
}

section[data-modal-id='ins_detail'] .table-term {
    table-layout: fixed;
    width: 100%;
    border-top: 1px solid #e1e1e1;
    border-left: 2px solid transparent;
    word-break: break-all;
    min-width: 100%;
    font-size: 13px;
    line-height: 23px;
    border-top: 1px solid #efefef;
    border-spacing: 0;
}

section[data-modal-id='ins_detail'] .table-term th {
    font-weight: 400;
    padding: 12px 8px;
    color: #666;
    background-color: #f7f7f7;
    border: 1px solid #efefef;
    border-top: none;
    border-left: none;
    text-align: center;
}

section[data-modal-id='ins_detail'] .table-term th strong {
    color: #666;
    font-weight: 400;
}

section[data-modal-id='ins_detail'] .table-term td {
    padding: 12px 12px;
    color: #909090;
    border: 1px solid #efefef;
    border-top: none;
    border-left: none;
    text-align: center;
    vertical-align: middle;
}

section[data-modal-id='ins_detail'] .table-term td li {
    text-align: left;
}

section[data-modal-id='ins_detail'] .table-term th:last-child,
section[data-modal-id='ins_detail'] .table-term td:last-child {
    border-right: none;
}

section[data-modal-id='ins_detail'] .addition-serv-img-section {
    margin-bottom: 40px;
}

section[data-modal-id='ins_detail'] .adminDef strong {
    display: block;
    margin-top: 40px;
    color: #000;
    font-size: 18px;
    line-height: 28px;
}

section[data-modal-id='ins_detail'] .adminDef > ul {
    margin-top: 20px;
}

section[data-modal-id='ins_detail'] .adminDef > ul li {
    position: relative;
    padding-left: 11px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

section[data-modal-id='ins_detail'] .adminDef > ul li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #bfbfbf;
}

section[data-modal-id='ins_detail'] .noticeList > p, section[data-modal-id='ins_detail'] .noticeWrap > p {
    margin-top: 30px;
}

section[data-modal-id='ins_detail'] .noticeList > p strong, section[data-modal-id='ins_detail'] .noticeWrap > p strong {
    font-size: 18px;
    line-height: 28px;
    padding: 0;
    color: #000;
}

section[data-modal-id='ins_detail'] .noticeList > ul, section[data-modal-id='ins_detail'] .noticeWrap > ul {
    margin-top: 20px;
}

section[data-modal-id='ins_detail'] .noticeList > ul li, section[data-modal-id='ins_detail'] .noticeWrap > ul li {
    position: relative;
    padding-left: 11px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

section[data-modal-id='ins_detail'] .noticeList > ul li:before, section[data-modal-id='ins_detail'] .noticeWrap > ul li:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #bfbfbf;
}

section[data-modal-id='ins_detail'] .noticeList > ol, section[data-modal-id='ins_detail'] .noticeWrap > ol {
    margin-top: 20px;
}

section[data-modal-id='ins_detail'] .noticeList .adminDepTwo, section[data-modal-id='ins_detail'] .noticeWrap .adminDepTwo {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 40px;
    margin-bottom: 0;
}

#reviewFilterPop .modal-footer {
    padding-bottom: 0;
}

#reviewFilterPop .modal-footer .btnWrap {
    margin-top: 20px;
}

body > .btnSt.sm, body .wrap.godo2023 .cart-empty-wrap .btns-wrap body > a.sm, body .wrap.godo2023 .my-cart-tbl body > .sm.cart-btn,
body .wrap.godo2023 .my-cart-tbl .all-btns-wrap body > .sm.cart-btn, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc body.group-total-btn > a.sm, body .wrap.godo2023 .modal body > .sm.btn-primary, body .wrap.godo2023 .modal body > .sm.btn-semi, body .wrap.godo2023 .modal body > .sm.btn-outline-primary {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.tGiftswiper .feature_notice_area .noticeList > li, .tGiftswiper .feature_notice_area .noticeWrap > li {
    border-top: none;
}

.tGiftswiper .noticeList > li + li, .tGiftswiper .noticeWrap > li + li {
    padding-top: 0 !important;
}

.boxGrey {
    margin: 24px 0 0 0;
}

.boxGrey img {
    vertical-align: top;
    width: 100%;
}

.prodOptions .preOrderBox {
    margin-bottom: 60px;
}

.prodOptions .preOrderBox h3 {
    margin-top: 0;
}

.prodOptions .preOrderBox h3 + .formGroup {
    margin-top: 24px;
}

.prodOptions .preOrderBox input[type="password"] {
    letter-spacing: 0;
}

.prodOptions .preOrderBox .btnSt.secondary1, .prodOptions .preOrderBox body .wrap.godo2023 .cart-empty-wrap .btns-wrap a.secondary1, body .wrap.godo2023 .cart-empty-wrap .btns-wrap .prodOptions .preOrderBox a.secondary1, .prodOptions .preOrderBox body .wrap.godo2023 .cart-empty-wrap .btns-wrap a:not(.btn-bg), body .wrap.godo2023 .cart-empty-wrap .btns-wrap .prodOptions .preOrderBox a:not(.btn-bg), .prodOptions .preOrderBox body .wrap.godo2023 .my-cart-tbl .secondary1.cart-btn, body .wrap.godo2023 .my-cart-tbl .prodOptions .preOrderBox .secondary1.cart-btn, .prodOptions .preOrderBox body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-talk, body .wrap.godo2023 .my-cart-tbl .prodOptions .preOrderBox .cart-btn.cart-btn-talk, .prodOptions .preOrderBox body .wrap.godo2023 .my-cart-tbl .cart-btn.cart-btn-sold-out:not(.cart-btn-other), body .wrap.godo2023 .my-cart-tbl .prodOptions .preOrderBox .cart-btn.cart-btn-sold-out:not(.cart-btn-other), .prodOptions .preOrderBox body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .group-total-btn > a.secondary1, body .wrap.godo2023 .my-cart-list-acc .my-cart-tbl-acc .prodOptions .preOrderBox .group-total-btn > a.secondary1, .prodOptions .preOrderBox body .wrap.godo2023 .modal .secondary1.btn-primary, body .wrap.godo2023 .modal .prodOptions .preOrderBox .secondary1.btn-primary, .prodOptions .preOrderBox body .wrap.godo2023 .modal .secondary1.btn-semi, body .wrap.godo2023 .modal .prodOptions .preOrderBox .secondary1.btn-semi, .prodOptions .preOrderBox body .wrap.godo2023 .modal .btn-outline-primary, body .wrap.godo2023 .modal .prodOptions .preOrderBox .btn-outline-primary {
    width: 100%;
    margin-top: 40px;
}

.prodOptions .preOrderBox .poTit {
    font-size: 13px;
    color: #909090;
}

.prodOptions .preOrderBox .formItemRow + .flexBox, .prodOptions .preOrderBox .formItemRow + .flexEndBox, .prodOptions .preOrderBox .formItemRow + .timeSelInfo, .prodOptions .preOrderBox .formItemRow + .quickBox, .prodOptions .preOrderBox .formItemRow + .storeSearch, .prodOptions .preOrderBox .formItemRow + .visitSelect,
.prodOptions .preOrderBox .formItemRow + .visitInfo, .prodOptions .preOrderBox .formItemRow + .storeTitBox, .prodOptions .preOrderBox .formItemRow + .instBox {
    margin-top: 12px;
}

section[data-modal-id='preorder_check'] .modalInner[data-page='1'] .formItemRow + .formItemRow {
    margin-top: 40px;
}

section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .linkBlue {
    color: #4130df;
    border-bottom: 1px solid #4130df;
}

section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .deviceInfo {
    margin-top: 20px;
    border: 1px solid #efeeff;
    border-radius: 8px;
    padding: 20px;
    color: #444;
}

section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .deviceInfo dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: inherit;
}

section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .deviceInfo dl + dl {
    margin-top: 12px;
}

section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .noticeList li.open, section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .noticeWrap li.open {
    padding-bottom: 20px;
}

section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .noticeList li:first-child, section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .noticeWrap li:first-child {
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}

section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .noticeList li:last-child, section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .noticeWrap li:last-child {
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e1e1;
}

section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .noticeList li:last-child:is(.open), section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .noticeWrap li:last-child:is(.open) {
    padding-bottom: 40px;
}

section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .noticeList li.disabled .deviceInfo, section[data-modal-id='preorder_check'] .modalInner[data-page='2'] .noticeWrap li.disabled .deviceInfo {
    color: #bfbfbf !important;
}

.moreList {
    margin: 12px 0 0 0;
}

.moreList li {
    position: relative;
    padding: 0 0 0 11px;
    font-size: 13px;
    color: #909090;
    font-weight: 400;
    line-height: 23px;
}

.moreList li:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 3px;
    height: 3px;
    border-radius: 2px;
    background: #909090;
}

.moreList + .orderCsCenter {
    margin: 40px 0 0 0;
}

.modalContent > .orderContBox:first-child {
    margin-top: 0 !important;
}

.modalContent > .orderContBox {
    margin: 40px 0 0 0 !important;
}

.orderContBox + .orderCsCenter {
    margin: 40px 0 0 0 !important;
}

.fc0000 {
    color: #fc0000 !important;
    font-weight: bold !important;
}

.restockComplete .newIbgo {
    margin: 20px 0 0 0;
}

.restockComplete .newIbgo .newIbgoList li .ipArea .newIbgoDiv {
    display: block;
    text-align: center;
}

.newIbgo {
    width: 100%;
    margin: 8px 0 0 0;
    text-align: center;
}

.newIbgo .newIbgoList {
    display: inline-block;
    width: auto;
}

.newIbgo .newIbgoList li + li {
    margin: 8px 0 0 0;
}

.newIbgo .newIbgoList li .ipArea {
    position: relative;
}

.newIbgo .newIbgoList li .ipArea .newIbgoDiv {
    display: block;
    text-align: left;
}

.newIbgo .newIbgoList li .ipArea .newIbgoDiv strong {
    position: relative;
    padding: 0 12px 0 0;
    font-size: 16px;
    color: #666666;
    font-weight: 400;
    line-height: 24px;
    vertical-align: top;
}

.newIbgo .newIbgoList li .ipArea .newIbgoDiv strong + span {
    display: inline-block;
    position: relative;
    padding: 0 12px 0 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #666666;
    vertical-align: top;
}

.newIbgo .newIbgoList li .ipArea .newIbgoDiv strong + span:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 1px;
    height: 11px;
    background: #bfbfbf;
}

.newIbgo .newIbgoList li .ipArea .newIbgoDiv strong + span + span {
    display: inline-block;
    position: relative;
    padding: 0 0 0 12px;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    vertical-align: top;
}

.newIbgo .newIbgoList li .ipArea .newIbgoDiv strong + span + span .colorChip {
    margin: 0 6px 0 0;
}

.newIbgo .newIbgoList li .ipArea .newIbgoDiv strong + span + span:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 1px;
    height: 11px;
    background: #bfbfbf;
}

.newIbgo .newIbgoList li .ipArea input[type=checkbox] {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.newIbgo .newIbgoList li .ipArea input[type=checkbox]:checked + label {
    background: url(../img/godo2023/ico_checkbox_on.svg) no-repeat left 4px;
}

.newIbgo .newIbgoList li .ipArea input[type=checkbox] + label {
    display: block;
    background: url(../img/godo2023/ico_checkbox_off.svg) no-repeat left 4px;
    padding: 0 0 0 32px;
    text-align: left;
}

.newIbgo .newIbgoList li .ipArea input[type=checkbox] + label strong {
    position: relative;
    font-size: 16px;
    color: #666666;
    font-weight: 400;
    line-height: 26px;
    vertical-align: top;
}

.newIbgo .newIbgoList li .ipArea input[type=checkbox] + label strong + span {
    display: inline-block;
    position: relative;
    padding: 0 12px 0 12px;
    margin: 0 0 0 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666666;
    vertical-align: top;
}

.newIbgo .newIbgoList li .ipArea input[type=checkbox] + label strong + span:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 1px;
    height: 11px;
    background: #bfbfbf;
}

.newIbgo .newIbgoList li .ipArea input[type=checkbox] + label strong + span + span {
    display: inline-block;
    position: relative;
    padding: 0 0 0 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666666;
    vertical-align: top;
}

.newIbgo .newIbgoList li .ipArea input[type=checkbox] + label strong + span + span .colorChip {
    margin: 0 6px 0 0;
}

.newIbgo .newIbgoList li .ipArea input[type=checkbox] + label strong + span + span:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 1px;
    height: 11px;
    background: #bfbfbf;
}

.alLeft {
    text-align: left !important;
}
