﻿

.wrap{
    margin-top: 180px;
    margin-bottom: 80px;
}
.wrap>div{
    max-width: 680px;
}



/* #region 개통 단계 표시 */
.step{
    width: 100%;
    height: auto;
    position: fixed;
    top: 80px;
    left: 0;
    background: #ffffff;
    z-index: 99;
    padding: 1rem 0;
}
.circle_step{
    max-width: 680px;
    margin: auto;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items:center;
    column-gap: 5px;
}
.circle_step p {
    line-height: 20px;
    text-align: center;
    border-radius: 30px;
    font-size: 15px;
    color: #8f8f8f;
}
.circle_step .now{
    background: var(--main-color);
    color: #fff;
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 14px;
        text-align: center;
}
.circle_step span{
    color: var(--main-color);
    display: flex;
    align-items: center;
    font-size: 1.13rem;
}
@media (max-width: 1200px) {
    .circle_step {
        padding: 0 1.5rem;
    }
}
@media (max-width:768px) {
    .step {
        top: 60px;
    }
}
/* #endregion */



/* #region 유심구매, 회원가입 단계 표시 */
.step2{
    max-width: 680px;
    width: 100%;
    height: auto;
    z-index: 99;
    background: #fff;
}
@media (max-width:768px) {
    .step2 {
        top: 60px;
    }
}
.circle_step2{
    padding-top: 1.5rem;
    height: auto;
    display: flex;
    justify-content: flex-end;
    column-gap: 8px;
}
.circle_step2 p {
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: #E0E0E0;
    border-radius: 30px;
    font-size: 15px;
}
.circle_step2 .now2{
    background: var(--main-color);
    color: #fff;
    display: inline-block;
}
@media (max-width:768px) {
    .circle_step2{
        padding-top: 0;
        margin-bottom: 1rem;
    }
}

/* #endregion */




/* 탭 메뉴 스타일 */
.tab_menu {
  display: flex;
  width: 100%;
  margin: 0 auto 10px auto;
}
.tab_menu>h2 {
    width: 49%;
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
    color: #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
}
.tab_menu .now_h2{
    color: var(--sub-color);
    border-bottom: 2px solid var(--sub-color);
}

@media (max-width:768px) {
     .step{
        top: 60px;
    }
     .circle_step{
         top: 35px;
     }
}
@media (max-width:580px) {
    .step h2{
        font-size: 1.6rem;
    }
    .circle_step{
         top: 30px;
     }

}



/* 개통 공통 모달 디자인 */
.open_modal h5{
    color: #3B424B;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .65rem;
}
.open_modal>div>p{
    color: #777a7b;
    font-size: .93rem;
    line-height: 140%;
}
.modal_bg{
    padding: 2rem 0;
    border-radius: 10px;
    background: #fafafa;
    border: 1px solid #EDEDED;
    color: #4C4C4C;
    margin: 1rem 0;
}
.modal_bg strong{
    display: block;
    font-weight: 800;
    margin-bottom: .6rem;
}
.modal_bg p{
    line-height: 180%;
}
.open_modal .btn1{
    height: 56px;
    line-height: 56px;
    border-radius: 10px;
}



/* 개통step4 미성년자 필수 고지 */
.minor_guide{
    margin-top: 3rem;
}
.minor_guide  .flex .chk_box{
    padding-left: 0;
}
.minor_guide .flex span{
    font-size: 0.87rem;
    color: #444;
    padding-left: 4px;
}
.minor_guide .flex input[type='checkbox'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border: 1px solid #ccc;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    vertical-align: central;
    display: block;
}
.minor_guide .flex .chk_box input[type='checkbox']:checked {
    background-color: var(--sub-color);
    border: 3px solid white;
    box-shadow: 0 0 0 1px var(--sub-color);
}
.txtbox_minor hr{
    margin: 1rem 0;
    border: 1px solid #ededed;
}
.txtbox_minor{
    color: #444;
}
.txtbox_minor strong{
    font-weight: 800;
}
