﻿

html { font-size: 17px; }
@media (max-width: 1080px) {
    html { font-size: 16px; }
}
@media (max-width: 580px) {
    html { font-size: 15px; }
}
@media (max-width: 480px) {
    html { font-size: 14px; }
}
@media (max-width: 360px) {
    html { font-size: 13px; }
}

:root{
    --main-color: #00A9EA;
    --sub-color: #51B5DA;
    --sub2-color: #3B424B; /* (제목용) 회색 */
    --sub3-color: #ff6900; /* 주황색 */
    --bg-color: #F5FCFF; /*하늘색연한배경*/
    --bg2-color: #FAFBFB; /*회색연한배경*/
    --btn-color: #EAEAEA; /* 회색버튼 */
    --g-color: #808080; /* 회색(글씨) */
    
    /*--tag-color: #598CC3;
    --tag-bg: #EDF6FF;*/ 
    --border-15px:  0.94rem;
    --border-25px:  1.56rem;
    --border-30px: 1.88rem;

    --box-shadow: 0px 2px 5px rgba(180, 180, 180, 0.6);
}


a, button{
    cursor: pointer;
}


.smog {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    display: none;
}

.flex{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}


.btnStyle1{
    border: 1px solid var(--main-color);
    background: var(--main-color);
    border-radius: 6px;
    color: #ffffff;
    width: auto;
    height: auto;
    padding: 3px 5px;
    font-size: 12px;
    position: relative;
    display: block;
}

/* 서브페이지 h2 공통 */
.page_tit{
    font-size: 1.88rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #3B424B;
}
@media (max-width: 768px) {
    .page_tit {
        margin-bottom: 2rem;
    }
}




/*제목용*/
.title h2, .title h3{
    font-size: 1.75rem;
    font-weight: 800;
}
.title>p {
    font-size: 1.05rem;
    color: #808080;
    /*margin-top: 1rem;
    margin-bottom: 3rem;*/
    margin-top: .8rem;
    margin-bottom: 2rem;
}
.title2 h4{
    font-size: 1.13rem;
    color: var(--sub2-color);
    font-weight: 700;
}
.title2 p{
    color: #949CA2;
    margin-top: 0.5rem;
}




/* 총 개수 */
.toolbar{
    align-items: center;
    height: 30px;
}

.n_post{
    color: var(--g-color);
}

.n_post>span{
    font-weight: 600;
    color: var(--sub-color);
}
.filter{
    width: auto;
    height: 30px;
    border: 0;
    color: #6F6F6F;
    padding: 0 20px;
    cursor: pointer;
    background-position: 95%;
}


/* 총 개수 */
.result{
    font-size: 0.9rem;
}
.rate {
    font-weight: 500;
    text-indent: 5px;
    color: #212121;
}
.total{
    color: var(--sub-color);
    font-weight: 500;
    margin: 0 2px;
}
.result select {
    cursor: pointer;
    width: auto;
    border: none !important;
    color: #888888;
    padding: 0 2%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
   background: url(/common/img/masterpage/down.svg) no-repeat 98%;
    background-size: 15px;
    background: #fff;
}


.plan_benefit_wrap>div>span{
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    margin-left: -6px;
    background: var(--main-color);
    border-radius: 50px;
    font-size: 9px;
    color: #fff;
}
.plan_benefit span{
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    margin-right: 6px;
    background: var(--main-color);
    border-radius: 50px;
    font-size: 11px;
    color: #fff;
}
.plan_benefit_wrap span:nth-of-type(1), .plan_benefit li:nth-of-type(1) span{
    background: #EA4100;
}
.plan_benefit_wrap span:nth-of-type(2), .plan_benefit li:nth-of-type(2) span{
    background: #EC6833;
}
.plan_benefit_wrap span:nth-of-type(3), .plan_benefit li:nth-of-type(3) span{
    background: #EF9066;
}
.plan_benefit_wrap span:nth-of-type(4), .plan_benefit li:nth-of-type(4) span{
    background: #FBB896;
}
.plan_benefit_wrap span:nth-of-type(5), .plan_benefit li:nth-of-type(5) span{
    background: #F5DFCC;
}




/* 개통,회원가입,유심구매 다음버튼 */
.btn_wrap{
    /*display:flex;*/
    align-items: center;
    justify-content: space-between;
    /*gap: 1rem;*/
}

.btn_wrap .btn1:first-child{
    margin-bottom: 1rem;
}
.btn1, .next_btn, .prev_btn, .re_btn, .reset_btn, .g_btn, .certin_btn{
    width: 100%;
	height: 78px;
    line-height: 78px;
    border-radius: var(--border-15px);
	display: block;
	color: #fff;
    text-indent: 0;
    font-size: 0.94rem;
	text-align: center;
	cursor: pointer;
    border: none;
    transition: all 0.3s ease-in-out;
}

.btn1 {
	background: var(--sub-color);
}
.btn1:hover{
    background: var(--main-color);
    transition: all 0.3s ease-in-out;
}
.next_btn{
    background: #313131;
}
.next_btn:hover, .certin_btn:hover{
    background: #000;
    transition: all 0.3s ease-in-out;
}
/* 진회색 버튼 */
.certin_btn{
    background: #222;
}
.prev_btn{
	background: var(--btn-color);
    color: #848484;
}
.prev_btn:hover{
    background: #e1e0e0;
	color: #7f7f7f;
}
/* 언더라인 버튼 / 메인으로 버튼 */
.re_btn{
    background: none;
    border-radius: 0;
    text-decoration: underline;
    color: #808080;
    height: unset;
    line-height: unset;
    margin-top: 2rem;
}
.re_btn:hover{
    color: #505050;
}
.reset_btn{
    color: #7C7C7C;
	background: #fff;
    box-shadow: 0 0 5px rgba(103,103,103,0.15);
    height: 60px;
    line-height: 60px;
    border-radius: 10px;
}
.g_btn{
    background: #515151;
    height: 60px;
    line-height: 60px;
    border-radius: 10px;
}
.g_btn span{
    font-weight: 600;
}
.g_btn:hover{
    background: #000;
}
@media (max-width:580px) {
    .btn1,  .next_btn,  .prev_btn,  .certin_btn {
        height: 68px;
        line-height: 68px;
    }
    .re_btn{
        height: unset;
        line-height: unset;
    }
}


/* 모달창 버튼 */
.c_arrow{
    margin-left:10px;
    transition:all 0.5s ease;
    width:15px;
}


/*컨텐츠 기본사이즈*/
.wrap {
    width: 100%;
    margin: auto;
    margin-top: 130px;
    min-height: calc(100vh - 450px);
}
.wrap>div{
    max-width:1180px;
    width: 100%;
    height:auto;
    margin:auto;
}
@media(max-width:1200px) {
    .wrap>div {
        width:100%;
        padding: 0 1.5rem;
    }
}
@media(max-width:768px) {
    .wrap {
        margin-top: 100px;
    }
}
@media(max-width:480px) {
    .wrap>div {
        padding: 0 15px;
    }
}










/* 버튼 */
button {
    border: none;
    background: none;
    cursor:pointer;
}



/*셀렉트 css*/
select{
    width: 100%;
    height: 68px;
    border-radius: 10px;
    border: 1px solid #AABFDA;
    border: 1px solid #E4E4E4;
    padding: 20px;
    outline: none;
    font-size: 1rem;
    background: url(/common/img/masterpage/down.svg) no-repeat 98%;
    background-size: 15px;
    -webkit-appearance: none;
}
@media (max-width: 768px) {
    select {
        height: 64px;
        padding: 9px;
    }
    input{
        height: 64px;
    }
}

input {
    font-size: 1rem;
    box-sizing: border-box;
    border: 1px solid #E4E4E4;
    border-radius: 12px;
    outline: none;
    text-indent: 20px;
    color: #1e1e1e;
}




/* 서브페이지 선택 필터 */
.opt_obj input[type="radio"] {
    display: none;
}
.opt_obj input[type="radio"] + span {
    display: inline-block;
    width: auto;
    height: 3rem;
    line-height: 3rem;
    padding: 0 1.5rem;
    background: #F6F6F6;
    border-radius: 50px;
    font-weight: 600;
    color: #252525;
    text-align: center;
    cursor: pointer;
}
.opt_obj input[type="radio"]:checked + span {
    background: #25252D;
    color: #fff;
}


@media (max-width:768px) {
   
    .opt_obj input[type="radio"] + span{
        height: 2.5rem;
        line-height: 2.5rem;
    }


}


/* 스크롤 커스텀 */
.b_scro::-webkit-scrollbar {
    width: 10px;
    cursor: pointer;
}
.b_scro::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
    padding-right: 5px;
    background-clip: padding-box;
    border: 1px solid transparent;
    cursor: pointer;
}
.b_scro::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px white;
}




/*텍스트 박스*/
.txtbox,
.txtbox2{
    background: var(--bg2-color);
    border: 1px solid #f7f7f7;
    color: #949CA2;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    line-height: 140%;
    font-size: 0.87rem;
    word-break: keep-all;
}




/* 선택필터 */
/*태그*/
.tag{
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1em;
    flex-direction: row;
}

.tag p{
    border-radius: 50px;
    font-weight: 600;
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
}


@media (max-width:1200px) {

    .tag{
        flex-wrap: wrap;
    }

}


.popular{
    background: #DCF8DF;
    color: #3D9C45;
}

.sale12{
    background: #F6DDFF;
    color: #A955C8;
}

.sale24{
    background: #D6F4FF;
    color: #0D83B0;
}

.tag3{
    background: #FFE4CA;
    color: #B4783B;
}

.prepay{
    background: #E4E4E4;
    color: #707070;
}




.label_tag{
    height: 48px;
    line-height: 48px;
    margin-right: 6px;
    margin-bottom: 6px;
    text-align: center;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    color: var(--tag-color);
    background: var(--tag-bg);
}
.tag .label_tag input[type="radio"] {
    display: none;
}
.label_tag input[type="radio"] + span {
    font-weight: 500;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    margin: auto;
}
.label_tag input[type="radio"]:checked + span {
    width: 100%;
    border-radius: 10px;
    background: var(--sub-color);
    color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.25);
}
@media (max-width:580px) {
    .label_tag {
        margin-right: 6px;
        margin-bottom: 6px;
        border-radius: 10px;
    }
    .label_tag input[type="radio"]:checked + span {
        width: 100%;
        border-radius: 10px;
    }
}



/*상세 화살표*/
.arrow{
  transition:all 0.3s ease;
}
.arrow:hover{
    cursor:pointer;
}
.rotate{
    transition:all 0.3s ease;
    transform:rotate(180deg);
}



/*검색창*/
.searchbox{
    width: 300px;
    height: 42px;
    position:relative;
}
.search_board{
    box-sizing: border-box;
    width: 100%;
    height:100%;
    border: 1px solid #dfdfdf;
    outline: none;
    text-indent: 15px;
    border-radius: 10px;
    padding-right: 12%;
}
.search_board::-webkit-input-placeholder {
    color: #888;
    font-size: 0.93rem;
}
.searchon{
    position:absolute;
    top: 13px;
    right: 15px;
}
.searchon:hover{
    cursor:pointer;
}


/* 페이지네이션 pagination */
.pagenation{
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items: end;
    margin-top: 60px;
}
.pagenation a{
    width: 2rem;
    margin: 0 10px;
    display: block;
    color: #CCCCCC;
}
.pagenation a:hover{
    cursor:pointer;
}
.pagenation .onpage{
    color: #000;
}




/* modal 모달창*/
.modal,
.issueVirtModal{
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 1000000000;
    left: 50%;
    top: 50%;
    transform: translate(-50%. -50%);
}
.modal_wrap,
.modalcontants{
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    height: auto;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.1);
}

.issueVirtModal .modal-close{
    position: absolute;
    top: 31.4%;
    left: 69.5%;
    z-index: 999999;
    font-size: 2.5rem;
}

/*.modal_content{
    padding-bottom: 30px;
}*/

.modalcontants h2{
        font-size: 1.4rem;
    font-weight: 600;
    color: var(--sub2-color);
}

.modalconWrap{
    margin: 1rem 0;
}

.modalconWrap table{
    width: 100%;
}

.modalconWrap table tbody th,
.modalconWrap table tbody tr,
.modalconWrap table tbody td {
    border: 1px solid #dbdbdb;
    height: 40px;
}

.modalconWrap table tbody tr:first-child{
    background: #FAFBFB;
}




/* 조회내역 없음 */
.common_empty{
    margin: auto;
    text-align: center;
}
.common_empty p{
    margin-top: 20px;
}




/* -------- 데이터 --------- */
.data{
    display: flex;
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.data_wrap{
    border: 1px solid #E3E3E3;
    border-radius: var(--border-30px);
    padding: 3.5%;
    width: 100%;
    height: fit-content;
}
.data_wrap {
    padding: 1.9rem;
    display: flex;
    flex-direction: column; /* 내용 세로 방향으로 배치 */
    align-items: flex-start; /* 자식 요소 왼쪽 정렬 */
}
.data_wrap:hover{
    box-shadow: var(--box-shadow);
}

/* 상단 요금제명 */
.data_top{
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.data_name{
    font-size: 1.1rem;
    font-weight: 600;
    color: #595959;
    margin: .6rem 0 .8rem 0;
}
/* 태그 */
.data_tag{ 
    width: fit-content;
    color: #fff;
    padding: 0 8px;
    height: 23px;
    line-height: 23px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
}
.pop{ background: #046241; color: #fff; } 
.lte { background: #365DE6; }
.kt{ background: #FD5C1C; }

/* 중간 */
.data_mid{
    margin-bottom: 1.88rem;
}
.data_mid1{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0.6rem;
    align-items: center;
    margin-bottom: 0.3rem;
}
.data_mid1>ul{
    display: flex;
    align-items: center;
    column-gap: 1rem;
    color: #4e4e4e;
}
.data_mid1 li{
    display: flex;
    align-items: center;
    column-gap: 6px;
    color: #706F6F;
}
.data_mid strong{
    font-size: 1.625rem;
    font-weight: 600;
}
.data_mid2 span{
    font-weight: 600;
}
.data_mid1>strong{
    background: url('/img/main/data.svg') no-repeat 0 center;
    /*background-size: 21px 23px;*/ 
    padding-left: 30px; 
    display: inline-block;
    color: #706F6F;
    text-align: left;
}
.data_mid2{
    text-align: right;
}
.data_mid2>strong{
    color: var(--sub3-color);
    white-space: nowrap;
    font-size: 1.78rem;
    margin: 6px 0;
    display: block;
    font-weight: 800;
}
.data_mid2>p{
    text-align: right;
    color: #7f7f7f;
}
.data_mid2 .price_data{
    text-decoration: line-through;
     color: #BBBBBB;
}
.discount_date{
    font-weight: 600;
    white-space: nowrap;
}

/* 하단 */
.data_bottom{
    width: 100%;
    align-items: center;
    color: #8d8d8d;
}
.data_more img{
    transition: all 0.3s ease;
}

.data_more>span {
    margin-right: 5px;
    /* white-space: nowrap; */
    line-height: 145%;
    display: flex;
    text-align: left;
    flex-wrap: wrap;
}
.data_btn{
    display: flex;
    column-gap: 8px;
}
.data_btn button{
    height: 56px;
    width: 135px;
    border-radius: var(--border-15px);
    font-weight: 600;
    cursor: pointer;
}
.data_btn button:first-child{
    background: #fff;
    border: 1px solid #BABABA;
    color: var(--g-color);
}
.data_btn button:last-child{
    border: 1px solid #edbfa9;
    background: #fff;
    color: #df7537;
    color: #f07f3a;
    font-weight: 600;
}
.data_detail{
    width: 100%;
    border-radius: var(--border-15px);
    border: 1px solid #e9e9e9;
    color: #989898;
    padding: 0.93rem;
    line-height: 150%;
    font-weight: 600;
    background: #FAFAFA;
    width: 100%;
    margin-top: 16px;
}

@media (max-width:1080px) {
    .data {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width:768px) {
    .data_mid{
        display: block;
        margin-bottom: 0.5rem;
    }
    .data_btn button {
        height: 54px;
        width: 120px;
    }
}

@media (max-width:580px) {
    .data_bottom{
        display: block;
    }
    .data_btn{
        margin-top: 0.8rem;
    }
    .data_btn button {
        width: 49%;
    }
}

@media (max-width:480px) {
    .data {
        grid-template-columns: repeat(1, 1fr);
    }
    .data_wrap {
        padding: 1.6rem;
    }
    .data_mid {
        margin: 0.8rem 0 1.3rem 0;
    }
    .data_mid strong {
        font-size: 1.35rem;
        margin: 2px 0;
    }
    .data_mid1 > strong {
        background-size: 18px auto;
        padding-left: 24px;
    }
    .data_name {
        font-size: 1.1rem;
    }
}
@media (max-width:360px) {
        .data_wrap {
        padding: 1.45rem;
    }
    .data_mid1 > p {
        font-size: 0.88rem;
    }
    /*.data_more span{
        display: none;
    }*/
    .data_btn button {
        height: 36px;
    }
}


/* 요금제 없을 때 */
.empty{
    height: 260px;
    width: 100%;
    border: 1px solid #dedede;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.empty p{
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
}
.empty img{
    width: 20px;
    height: 20px;
    margin-right: 7px;
}
.empty>.data{
    box-shadow: 4px 4px 10px rgba(125, 125, 125, 0.25);
    border-radius: 20px;
}


/* 반응형 시작 */
@media (max-width:580px) {

    /* 선택필터 */
    .label_tag {
        width: calc(24% - 2px);
    }
    .select_data {
        margin-top: 60px;
    }
    .empty {
        height: 250px;
    }
}
@media (max-width:480px){
    /* 선택필터 */
    .label_tag {
        width: calc(33% - 5px);
    }
    .data_summary {
        margin-bottom: 15px;
    }
    .data_m {
        margin-top: 15px;
    }
    .data_tex li {
        margin: 2px 0;
    }
    .data_tex li:nth-of-type(2) {
        margin: auto 8px;
    }
    .empty {
        height: 220px;
    }
}
@media (max-width:360px) {
    .result{
        display: flex !important;
    }
}



 /* 데이터 상세 모달창 */
 .modal2 .modal_wrap{
    max-width: 700px;
    width: 94%;
    overflow-y: auto;
 }
 /* 스크롤 커스텀 */
.modal2 .modal_wrap::-webkit-scrollbar {
    width: 15px;
    cursor: pointer;
}
.modal2 .modal_wrap::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
    padding-right: 5px;
    background-clip: padding-box;
    border: 1px solid transparent;
    cursor: pointer;
}
.modal2 .modal_wrap::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px white;
}
/* 내부 간격 */
/*.modal2 > div > *:not(:last-child):not(:nth-child(4)) {
    padding-left: 1rem;
    padding-right: 1rem;
}*/

/* 상단 */
/*.modal_d_tit{
    padding-bottom: 30px;
}*/
 .modal_d_tit p{
     font-size: 1.4rem;
     font-weight: 600;
     color: var(--sub2-color);
 }
 .modal_close{
     cursor: pointer;
 }

/* 본문 */
.modal_content{
    height: 100%;
    max-height: 400px;
    overflow-y: scroll;
    padding: 1rem 0;
}
/* 스크롤 커스텀 */
.modal_content::-webkit-scrollbar {
    width: 13px;
    cursor: pointer;
}
.modal_content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
    padding-right: 5px;
    background-clip: padding-box;
    border: 2px solid transparent;
    cursor: pointer;
}
.modal_content::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px white;
}
/* 태그 */
 .modal_d_top{
     display: flex;
     column-gap: 5px;
     margin: 20px 0 6px 0;
 }
/* 데이터 명 */
.modal2 .data_name{
    text-align: left;
}
/* 데이터 스펙 */
 .modal_d_info{
    width: 100%;
    padding: 30px 20px;
    margin: 12px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--bg2-color);
    border-radius: var(--border-15px);
 }
 .modal_d_info img {
    width: 23px;
    height: auto;
}
 .modal_d_info p{
     margin-left: 5px;
     color: #595959;
     word-break: keep-all;
 }
 .modal_d_info li{
     display: flex;
     align-items: center;
 }
/* 상세혜택 */
 .modal2 .noti{
     border-radius: 0;
 }
 .modal2 .noti:not(:last-child){
     border-bottom: 1px dashed #D3D3D3;
 }
.modal .n_box h3{
    margin: 0 !important;
}
.modal2 .n_pro{
    margin-bottom: 0.8rem;
}

/* 하단 월납부액, 버튼 */
 .moda_d_btn{
    align-items: center;
    padding: 1rem;
    border-top: 1px solid #e7e7e7;
 }
 .modal_d_money{
     text-align: left;
 }
 .modal_d_money>p:first-child{
     color: #505050;
     margin-bottom: 4px;
 }
 .modal_d_money strong{
     color: var(--sub-color);
     font-size: 1.7rem;
     font-weight: 800;
 }
 .moda_d_btn>a{
     margin: 0;
     width: 50%;
     height: 68px;
     line-height: 68px;
     background: var(--sub-color);
 }
 .data_modal .n_box {
    width: 100%;
    padding: 15px 0;
    border-top: 1px dashed #D3D3D3;
    border-bottom: 1px dashed #D3D3D3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.data_modal .noti h3 {
    margin: 10px 0;
}

/* 요금제 상세 CSS 추가 */
.modal_d_money {
    width: 48%;
}
.money_wrap{
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.modal_d_money>p:first-child {
    font-size: .93rem;
    color: #626262;
}
.money_wrap>p{
    color: #626262;
}

@media (max-width: 768px) {
    .money_wrap{
        margin-top: .5rem;
    }
    .modal2 .modal_wrap {
        max-width: 500px;
        width: 90%;
    }
    /*.modal2 .modal_d_tit {
        padding-bottom: 20px;
    }*/
    /*.modal2 > div > *:not(:last-child):not(:nth-child(4)) {
        padding-left: 1rem;
        padding-right: 1rem;
    }*/
    .modal_content{
        max-height: 300px;
    }
    .moda_d_btn {
        display: block;
    }
    .modal_d_money {
        width: 100%;
        display: block;
    }
    .moda_d_btn > a {
        width: 100%;
        margin-top: 0.6rem;
        height: 58px;
        line-height: 58px;
    }
    .modal_d_money > strong {
        font-size: 1.4rem;
    }

}

@media (max-width: 480px) {
    .modal_d_info{
        display: block;
    }
    .modal_d_info li {
        margin-left: 5%;
    }
    .modal_d_info li:not(:last-child) {
        margin-bottom: 20px;
    }
    .modal_d_info img{
        width: 20px;
        height: 20px;
    }
    .modal_d_info {
        padding: 20px;
    }
    .moda_d_btn{
        display: block;
    }
    .moda_d_btn > a {
        width: 100%;
        height: 64px;
        line-height: 64px;
    }
     .modal_d_money{
         margin-bottom: 10px;
     }
    .modal_d_money > p:last-child {
        text-align: right;
    }
}

/* 요금제-데이터상세 모달창/ step2.약관동의 - 자세히보기 */
.top_chk{
    display: flex;
    align-items: center;
    border: 1px solid #8CD9F6;
    border-radius: var(--border-25px);
    padding: 3rem 1rem;
    background: var(--bg-color);
    margin-bottom: 1rem;
}

.top_chk .checkon{
    margin-left: 1.2rem;
}

.all_chk{
    display: grid;
    margin-left: 1rem !important;
    gap: 0.3rem;
}

.all_chk strong{
    font-size: 1.25rem;
    font-weight: 700;
}

.all_chk em{
    color: var(--g-color);
    font-size: 0.87rem;
}

.noticebox{
    width:100%;
    height:auto;
}
.noti{
    width: 100%;
    position: relative;
    background: #FFF;
    transition: all 0.5s ease;
    overflow: hidden;
}

.notiopen{
    transition:all 0.5s ease;
}
.n_box{
    width:100%;
    padding: 1.3rem 1rem;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor: pointer;
}

/* 부가서비스박스 */
.n_tit>h3{
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
}
.n_tit>p{
    font-size: 0.93rem;
    color: #797979;
}
.n_tit>h4{
    font-size: 1.3rem;
    font-weight: 800;
    color:var(--sub-color);
    text-align: right;
}
.n_tit>h4>span{
    color: #979797;
    font-size: 0.9rem;
}
.n_box>div:last-child{
    display: flex;
    align-items: center;
}
.n_tit .c_arrow{
    margin-left: 1rem;
}
.n_tit .c_arrow.rotate {
    transform: rotate(180deg); /* 회전 효과 */
    transition: transform 0.3s ease; /* 부드러운 애니메이션 */
}
.n_box>div:last-child:hover{
    cursor:pointer;
}
.n_pro{
    max-height:250px;
    width: 100%;
    background:#FAFBFB;
    margin:auto;
    color:#606060;
    overflow: hidden;
    text-align:start;
    padding:30px;
    font-size: 0.9rem;
    line-height: 155%;
    box-sizing: border-box;
    border-radius: 25px;
    display: none;
}

/* 약관 상세 텍스트 공통 적용 설정 */
.n_pro * {
    overflow-wrap: break-word;
    white-space: normal;
    font-family: 'Pretendard', sans-serif !important;
    font-weight: 400;
    font-size: .87rem !important;
    color: #606060 !important;
    vertical-align: top;
    text-align: left !important;
}
.n_pro td{
	    padding: 0.5rem !important;
}


.noticebox table{
    table-layout: unset; 
    width: 100% !important;
}




.p_det_t tr td{
    text-align:center;
}
.p_det_t tr td:first-child{
    width: auto !important;
}
.p_det_t thead tr td{
    background:#f7f7f7;
    border-bottom: 1px solid #dedede;
    padding: 5px;
}
.p_det_t thead tr td:not(:last-child){
    border-right: 1px solid #dedede;
}

/* 스크롤 커스텀 */
.n_pro::-webkit-scrollbar {
    width: 13px;
    cursor: pointer;
}
.n_pro::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
    padding-right: 5px;
    background-clip: padding-box;
    border: 2px solid transparent;
    cursor: pointer;
}
.n_pro::-webkit-scrollbar-track {
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px white;
}


.gray{
    color:#898989;
}



/*라디오색상*/
input[type='radio'] {
  -webkit-appearance: none; 
  -moz-appearance: none; 
  appearance: none; 
  width: 18px;
  height: 18px;
  border: 1px solid #ccc; 
  border-radius: 50%;
  outline: none; 
  cursor: pointer;
 vertical-align:central;
}
.chk_box input[type='radio']:checked {
  background: var(--sub-color);
  border: 3px solid white; 
  box-shadow: 0 0 0 1px var(--sub-color);
}
.chk_box2 input[type='radio']:checked {
  background: var(--sub-color);
  border: 3px solid white; 
  box-shadow: 0 0 0 1px var(--sub-color);
}

/*라디오버튼(옵션선택) css*/
.option {
    width: 100%;
    height: auto;
    margin: auto;
    display: grid;
    gap: 1rem;
}
.option>p{
    margin-top: 15px;
    font-size: 0.87rem;
    color: #717171;
}
.open_obj{
    width: 100%;
    background: var(--bg2-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    cursor: pointer;
    position: relative;
}

.open_obj:hover{
    background: var(--bg-color);
}
.open_obj input[type="radio"] {
    display: none;
}

.open_obj span{
    display: block;
}

.open_obj span:first-child{
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--sub2-color);
}

.open_obj span:last-child{
    color: #949CA2;
}

.open_obj input[type="radio"] + span {
    font-size: 0.94rem;
    display: inline-block;
    width: 100%;
    line-height: 64px;
    height: 64px;
    color: var(--g-color);
    border-radius: 15px;
    border: 1px solid #f8f8f8;
    text-align: center;
    cursor: pointer;
}

.open_obj input[type="radio"]:checked + span,
.open_obj.selected {
    background: var(--bg-color);
    outline: 1px solid var(--sub-color);
    color: var(--main-color);
    font-weight: 600;
}




/* 옵션 결과 인풋창 */
.opt_minibox {
    position: relative;
    width: 100%;
    margin: 12px auto;
}
.opt_minibox input {
    width: 100%;
    height: 68px;
    font-size: 1rem;
    padding: 0;
    padding-top: 6px;
    box-sizing: border-box;
    /*border: 1px solid #AABFDA;*/
    outline: none;
    text-indent: 20px;
    color: #1e1e1e;
    border-radius: 12px;
    background: #fff;
}
/* 포커스 시 border 색 변경 */
.opt_minibox input:focus {
    border: 1px solid #AABFDA;
}
/* 값이 있으면서 포커스 안된 상태도 border 유지 */
/*.opt_minibox input:not(:placeholder-shown):not(:focus) {
    border: 1px solid #AABFDA;
}*/
/* 비활성화 상태에서 값 있으면 서브 컬러 */
/*.opt_minibox input[disabled]:not(:placeholder-shown) {
    border: 1px solid #AABFDA;
}*/

.opt_minibox label {
    position: absolute;
    left: 20px;
    bottom: 34%;
    width: 100%;
    height: 100%;
    text-align: left;
    pointer-events: none;
    color: #959595;
}
.opt_minibox label span {
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease;
}
/* 포커스 또는 값 있을 때 라벨 위로 이동 */
.opt_minibox input:focus + label span,
.opt_minibox input:not(:placeholder-shown) + label span {
    transform: translateY(-157%);
    font-size: 11px;
    color: #8498B1;
}
/* disabled일 때 label 색상도 변경 */
.opt_minibox input[disabled]{
    background: #FAFBFB;
    border: 1px solid #F7F7F7;
}

.opt_minibox input[disabled]:not(:placeholder-shown) + label span {
    transform: translateY(-157%);
    font-size: 11px;
    color: #AABFDA;
}


@media (max-width:768px) {
    .opt_minibox input {
        height: 62px;
        text-indent: 9px;
    }
    .opt_minibox label {
        left: 10px;
        bottom: 35%;
    }
    .opt_minibox input:focus + label span,
.opt_minibox input:not(:placeholder-shown) + label span {
    transform: translateY(-124%);
}
/* disabled일 때 label 색상도 변경 */
    .opt_minibox input[disabled]:not(:placeholder-shown) + label span {
        transform: translateY(-124%);
    }
}

@media (max-width:480px) {
}


/*




.choice2 .open_obj input[type="radio"] + span {
    line-height: 22px;
    padding-top: 10px;
}
.choice2 .open_obj span>span:first-child {
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
}
.choice2 .open_obj span>span:last-child {
    display: block;
    font-size: 0.85rem;
}

/*체크박스 css*/
.chk_box { 
    color: var(--sub2-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    padding-right: 0.5rem; 
    padding-left: 1.8rem;
    height: 20px;
    line-height: 20px;
    cursor: pointer; 
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; 
    user-select: none;
}
.chk_box span{
    margin-left: 3px;
    white-space: nowrap;
    font-weight: 500;
}
/* 기본 체크박스 숨기기 */
.chk_box input[type="checkbox"] {
     display: none; 
}
/* 선택되지 않은 체크박스 스타일 꾸미기 */
.checkon {
    width: 20px;
    height: 20px;
    border: 1px solid #cbcbcb;
    position: absolute;
    left: 0;
    border-radius:4px;
}
/* 선택된 체크박스 스타일 꾸미기 */
.chk_box input[type="checkbox"]:checked + .checkon {
    background: var(--main-color); 
    border: none;
}
.checkon:after {
    content: "";
    position: absolute; 
    display: none;
}
.chk_box input[type="checkbox"] + .checkon:after {
     display: block;
}
.checkon:after {
    width: 3.5px;
    height: 8px;
    border: 1px solid #fff;
    border-width: 0px 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 7px;
    top: 3px;
}




/* 동그란 선택자 */
.chk_box2 { 
    display: flex;
    align-items: center;
    font-weight: 500;
    position: relative;
    padding-right: 0.5rem; 
    height: 20px;
    cursor: pointer; 
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; 
    user-select: none;
}
.chk_box2 span{
    margin-left: 3px;
}
.chk_box input[type="checkbox"] {
     display: none; 
}
/* 선택되지 않은 체크박스 스타일 꾸미기 */
.chk_box2 .checkon {
    width: 20px;
    height: 20px;
    background: #E7F2FF;
    border: 1px solid #AFD6FF;
    position: absolute;
    /*top: -2px;*/
    left: 0;
    border-radius: 5px;
}
/* 선택된 체크박스 스타일 꾸미기 */
.chk_box2 .chk_box input[type="checkbox"]:checked + .checkon {
    background: var(--sub-color); 
    border: solid var(--sub-color);
}
chk_box2 .checkon:after {
    content: "";
    position: absolute; 
    display: none;
}
.chk_box2 input[type="checkbox"] + .checkon:after {
     display: block;
}

@media (max-width: 580px) {
    .chk_box {
        height: 18px;
        line-height: 18px;
        padding-left: 28px;
    }
    .checkon {
        width: 18px;
        height: 18px;
    }
    .checkon:after {
        width: 4px;
        height: 7px;
        top: 3.3px;
        left: 5.7px;
            border-width: 0 2px 2px 0;
    }
}




/* 본인인증 */
.cert_box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 2rem 0 1rem 0;
}
.cert_box img {
    width: 70px;
    height: 70px;
    cursor: pointer;
    border: none;
    border-radius: 0;
    transition: border 0.2s ease, border-radius 0.2s ease;
}
.cert_box img.selected {
    border: 4px solid var(--sub-color);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.cert_guide{
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: #696969;
    margin-bottom: 3rem;
}



/* 본인인증 오류 */
.error_modal .modal_wrap{
     padding: 2rem;
}
.error_tit{
    font-size: 1.5rem;
    font-weight: 700;
}
.error_icon{
    width: 55px;
    margin: 2rem 0 1.7rem 0;
}
.error_p1{
    font-weight: 600;
    font-size: 1.07rem;
}
.error_modal ul{
    background: #FAFBFB;
    border-radius: 15px;
    margin: 1.4rem 0;
    padding: 1rem 0;
    line-height: 160%;
}

.error_modal ul li{
    color: #343434;
}
.error_p2{
    margin-bottom: 1rem;
    color: #656565;
    font-size: .95rem;
}



/* 등록된 게시글이 없는 경우 */
.empty_list{
    /*border-top: 1px solid #3A3A3A;*/
    border-bottom: 1px solid #E2E7EE;
    padding: 2.5rem 0;
}
.empty_list p{
    margin-left: 10px;
}









/* #region  회원가입, 아디/비찾페이지 본인인증 이미지 */
.sign_security {
    width: 80%;
    max-width: 210px;
    margin: 55px auto;
    display: block;
}
@media (max-width:580px) {
  .sign_security {
    max-width: 190px;
    margin: 50px auto;
  }
}
/* #endregion */
