/* input */
::placeholder{color: var(--disabledText);}
.input{
    border: 1px solid var(--borderGrey);
    background-color: transparent;
    color: var(--defaultText);
    border-radius: 10px;
    height: 46px;
    padding: 0 15px;
    width: 100%;
}
.input:disabled{
    color: var(--defaultText);
    background-color: var(--bgGrey);
}
.input_label{
    font-size: 12px;
    margin-bottom: 5px;
}
.btn_input{
    display: flex;
    align-items: center;
}
.btn_input input{
    flex: 1;
}
.btn_input .btn{
    width: 120px;
    min-width: 120px;
    border-radius: 10px;
    background-color: var(--mainBlue);
    color: #ffffff;
    height: 46px;
    margin-left: 10px;
}
.input_error{
    font-size: 13px;
    color: var(--red);
    margin-bottom: 15px;
    margin-top: -10px;
}
.search_wrap{position: relative;}
.search_input{
    border-radius: 30px;
    padding-right: 50px;
}
.search_btn{
    position: absolute;
    right: 16px; top: 50%;
    transform: translateY(-50%);
    width: 32px; height: 32px;
    padding: 3px;
}
textarea{
    box-sizing: border-box;
    resize: none;
    font-size: 15px;
    font-family: inherit;
    width: 100%;
    border: 1px solid var(--borderGrey);
    border-radius: 10px;
    overflow-y: auto;
    padding: 10px;
    background-color: transparent;
    color: var(--defaultText);
}
/* selectbox */
select {appearance:none;}
select option{background-color: var(--white);}
.selectbox{
    border: 1px solid var(--borderGrey);
    color: var(--defaultText);
    border-radius: 10px;
    height: 46px;
    padding: 0 15px;
    width: 100%;
    background: var(--white) url('../images/selectbox_arrow.svg') no-repeat right 9px center;
}
.select_order{
    background: var(--white) url('../images/arrow_more_grey.svg') no-repeat right 0 center;
    padding-right: 20px;
    border: 0;
    color: var(--defaultText);
}
/* checkbox */
input[type='checkbox']{
    position: absolute;
    left: 0; top: 0;
    width: 0; height: 0;
    opacity: 0;
}
.checkbox1{position: relative;}
.checkbox1 input[type='checkbox'] + .checkbox_label{
    height: 56px; width: 100%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../images/checkbox.svg) no-repeat 15px 50%;
    text-align: center;
    border: 1px solid var(--borderGrey);
    color: var(--defaultText);
}
.checkbox1 input[type='checkbox'] + .checkbox_label .device_name{
    font-size: 16px;
}

.checkbox1 input[type='checkbox']:checked + .checkbox_label .device_name{
    color: #1F2933;
}
.checkbox1 input[type='checkbox'] + .checkbox_label .registration_date{
    font-size: 12px;
    color: #9BA5B1;
}
.checkbox1 input[type='checkbox']:checked + .checkbox_label{
    border: 0;
    background: #F0F4FF url(../images/checkbox_on.svg) no-repeat 15px 50%;
}
.checkbox2{position: relative;}
.checkbox2 input[type='checkbox'] + .checkbox_label{
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}
.checkbox2 input[type='checkbox'] + .checkbox_label::after{
    content: '';
    display: block;
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 20px;
    background: url(../images/checkbox.svg) no-repeat 50% 50%;
}
.checkbox2 input[type='checkbox']:checked + .checkbox_label::after{
    background: url(../images/checkbox_on.svg) no-repeat 50% 50%;
}
.checkbox3 input[type='checkbox'] + .checkbox_label{
    border-radius: 50px;
    padding: 10px 16px;
    border: 1px solid var(--borderGrey);
    color: var(--disabledText);
    background-color: transparent;
    display: block;
    text-align: center;
}
.checkbox3 input[type='checkbox']:checked + .checkbox_label{
    border: 1px solid #f0f4ff;
    background-color: #f0f4ff;
    color: var(--mainBlue);
}
.checkbox4 input[type='checkbox'] + .checkbox_label{
    height: 50px; width: 100%;
    line-height: 50px;
    display: block;
    background: url(../images/checkbox.svg) no-repeat calc(100% - 16px) 50%;
    text-align: left;
    padding: 0 16px;
}
.checkbox4 input[type='checkbox']:checked + .checkbox_label{
    border: 0;
    background: var(--bgBlue) url(../images/checkbox_on.svg) no-repeat calc(100% - 16px) 50%;
}
.dark .checkbox2 input[type='checkbox'] + .checkbox_label::after{
    background: url(../images/checkbox-dk.svg) no-repeat 50% 50%;
}
.dark .checkbox2 input[type='checkbox']:checked + .checkbox_label::after{
    background: url(../images/checkbox_on-dk.svg) no-repeat 50% 50%;
}
.dark .checkbox1 input[type='checkbox'] + .checkbox_label{
    background: url(../images/checkbox-dk.svg) no-repeat 15px 50%;
}
.dark .checkbox1 input[type='checkbox']:checked + .checkbox_label{
    background: #F0F4FF url(../images/checkbox_on-dk.svg) no-repeat 15px 50%;
    color: #1F2933;
}
.dark .checkbox4 input[type='checkbox'] + .checkbox_label{
    background: url(../images/checkbox-dk.svg) no-repeat calc(100% - 16px) 50%;
}
.dark .checkbox4 input[type='checkbox']:checked + .checkbox_label{
    background: var(--bgBlue) url(../images/checkbox_on-dk.svg) no-repeat calc(100% - 16px) 50%;
}
/* radio */
input[type='radio']{
width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
.radio_list input[type='radio'] + label{
    display: block;
    padding: 0 16px;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.radio_mark{
    width: 20px; height: 20px;
    border: 1px solid var(--borderGrey);
    position: relative;
    border-radius: 50%;
}
.radio_mark::after{
    content: '';
    display: block;
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 12px; height: 12px;
    background-color: var(--borderGrey);
    border-radius: 50%;
}
input[type='radio']:checked + label{
    background-color: var(--bgBlue);
}
input[type='radio']:checked + label .radio_mark{
    border: 1px solid var(--mainBlue);
}
input[type='radio']:checked + label .radio_mark::after{
    background-color: var(--mainBlue);
}
.radio_wrap input[type='radio'] + label{
    display: flex;
    align-items: center;
    background-color: transparent;
}
.radio_wrap input[type='radio'] + label .radio_mark{margin-right: 5px;}
.radio_wrap input[type='radio']:checked + label{background-color: transparent;}

/* input date */
input[type="date"]::-webkit-clear-button,
input[type="date"]::-webkit-inner-spin-button {
    display: none;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
}
input[type="date"]{
    background: var(--white) url('../images/calendar.svg') no-repeat calc(100% - 15px) 50%;
    font-family: initial;
    color: var(--disabledText)!important;
}
.dark input[type="date"]{
    background: url('../images/calendar-dk.svg') no-repeat calc(100% - 15px) 50%;
    color: var(--disabledText)!important;
}
input[type="date"]::-webkit-datetime-edit-text,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field{
    color: var(--disabledText)!important;
}
input[type="date"]:valid::-webkit-datetime-edit-text,
input[type="date"]:valid::-webkit-datetime-edit-month-field,
input[type="date"]:valid::-webkit-datetime-edit-day-field,
input[type="date"]:valid::-webkit-datetime-edit-year-field {
    color: var(--defaultText)!important;
}
/* btn */
.btn{
    background-color: var(--mainBlue);
    color: #ffffff;
}
.line_btn{
    border: 1px solid var(--mainBlue);
    color: var(--mainBlue);
    background-color: #ffffff;
}
.lblue_btn{
    color: var(--mainBlue);
    background-color: #f0f4ff;
}
.bt_btn{
    width: 100%;
    max-width: 480px;
    margin-top: 30px;
}
.scroll .bt_btn{
    position: fixed;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    padding: 0 16px 30px;
    margin-top: 0;
}
.bt_btn > .btn{
    width: 100%;
    height: 50px;
    border-radius: 100px;
}

.big{
    width: 100%;
    height: 50px;
    border-radius: 100px;
}
.btn.small{
    height: 36px;
    border-radius: 100px;
    padding: 0 10px;
}
.gra_btn{
    position: sticky;
    position: -webkit-sticky;
    width: 100%;
    padding: 30px 16px 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white) 30%, var(--white));
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
}
.quick_btn{
    display: none;
    position: fixed;
    bottom: 80px; right: 16px;
}
.quick_btn > button{
    width: 50px; height: 50px;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
/* 공통 */
header{
    width: 100%;
    height: 54px;
    position: sticky;
    position: -webkit-sticky;
    left: 0; top: 0;
    z-index: 10;
    background-color: var(--white);
}
.header{
    max-width: 480px;
    height: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--borderGrey);
    position: relative;
}
.header .logo{
    height: 15px; width: auto;
}
.header .subscript_num_label{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}
.header .subscript_num_label  p{
    width: max-content;
    height: auto;
    padding: 3px 7px;
    border: 1px solid var(--mainBlue);
    border-radius: 20px;
    color: var(--mainBlue);
    background: #fff;
    box-shadow: 0 3px 20px rgba(31,41,51,0.16);
}
.header .subscript_num_label  .explaination{
	display: none;
	}
.header .btn_wrap{position: relative;}
.header .btn_wrap button{
    margin-left: 5px;
    width: 32px; height: 32px;
}

.header .btn_wrap button.header_notice{
    position: relative;
}

.header .btn_wrap button.header_notice span{
    position: absolute;
    display: block;
    min-width: 18px;
    width: 18px;
    height: 18px;
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 17px;
    letter-spacing: 0.1px;
    text-align: center;
    color: var(--white);
    background-color: #f3485b;
    border-radius: 10px;
    top: -3px;
    right: -3px;
}


.header .btn_wrap button img{
    max-width: 24px;
}
.header .btn_wrap .user_authority{
    background-color: #f0f4ff;
    color: var(--mainBlue);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 15px;
    width: auto;
}
header .mypage_menu{
    position: absolute;
    right: 0; top: 46px;
    left: auto;
    transform: translate(0,0);
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.16);
    border-radius: 10px;
    background-color: var(--popbg);
    z-index: 9;
    min-width: 194px;
    display: none;

}
header .mypage_menu li{margin-bottom: 10px;}
header .mypage_menu li:last-child{margin-bottom: 0;}
header .mypage_menu li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .mypage_menu li a div{
    display: flex;
    align-items: center;
    flex: 1;
}
header .mypage_menu li a div > img{
    margin-right: 10px;
    max-width: 24px;
}

header .mypage_menu li a > img{width: 12px;}
.sub_header{
    max-width: 480px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: relative;
    border-bottom: 1px solid var(--borderGrey);
}
.sub_header h2{
    font-size: 18px;
    font-weight: 500;
    margin-left: 12px;
}
.content{
    max-width: 480px;
    margin: 0 auto;
    padding: 20px 16px 40px;
}
/* 모니터링 기업 검색 결과 깨짐으로 인한 추가 */
.content.search_list.scroll{
	padding: 0px 16px;
}
.card{
    border-radius: 10px;
    padding: 10px 15px;
    background-color: var(--card);
    box-shadow: 0 0 10px rgba(0,0,0,0.16);
    position: relative;
}
.header_btn{
    display: flex;
    align-items: center;
    position: absolute;
    right: 16px; top: 50%;
    transform: translateY(-50%);
}
.header_btn button{
    width: 34px; height: 34px;
    border-radius: 50%;
    background-color: #f0f4ff;
    padding: 5px;
    margin-left: 10px;
}

.bnn_content{
	max-width: 480px;
 	margin: 0 auto;
}
/* 하단메뉴바 */
.bt_menu{
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 9;
}
.bt_menu ul{
    border-top: 1px solid var(--borderGrey);
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 16px;
}
.bt_menu ul li{
    height: 100%;
    width: calc(20% - 8px);
    margin-right: 10px;
}
.bt_menu ul li:last-child{
    margin-right: 0;
    position: relative;
}
.bt_menu ul li a{
    height: 64px; width: 100%;
    color: var(--disabledText);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.bt_menu ul li a img{
    width: 26px;
    margin-bottom: 5px;
}
.bt_menu ul li.active a{color: var(--mainBlue); font-weight: 700;}

/* tab */
.tabnav{
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--borderGrey);
    padding: 0 16px;
    position: relative;
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
}

.tabnav::-webkit-scrollbar{
    display: none;
}

.tabnav li.current {
    color: var(--mainBlue);
}

.tabnav li{
	display: flex;
	align-items:center;
	justify-content: center;
	width:100%;
}

.tabnav li:not(.slider) {
    height: 50px;
    text-align: center;
}

.tabnav li:not(.slider2) {
    height: 46px;
    line-height: 46px;
    text-align: center;
}
.tabnav li.on{
    color: var(--mainBlue);
    font-weight: 500;
}
/*  sub-tab */
.subtabnav{
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--borderGrey);
    padding: 0 16px;
    position: relative;
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
}

.subtabnav::-webkit-scrollbar{
    display: none;
}

.subtabnav li.current {
    color: var(--mainBlue);
}

.subtabnav li{
	display: flex;
	align-items:center;
	justify-content: center;
	width:100%;
}

.subtabnav li:not(.slider) {
    height: 50px;
    text-align: center;
}

.subtabnav li:not(.slider2) {
    height: 46px;
    line-height: 46px;
    text-align: center;
}
.subtabnav li.on{
    color: var(--mainBlue);
    font-weight: 500;
}
.slider {
    display: block;
    position: absolute;
    bottom: 0;
    left: 16px;
    height: 4px;
    background: var(--mainBlue);
    transition: all 0.3s;
}
.slider2 {
    display: block;
    position: absolute;
    bottom: 0;
    left: 187.5px;
    height: 4px!important;
    background: var(--mainBlue);
    transition: all 0.3s;
}
.slider2 {
    height: 2px!important;
}
.tab-content2{
	display: none;
	padding-top:
}

.tab-content2.current{
	display: inherit;
}
.tab_ver2{
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--borderGrey);
    padding: 0 16px;
    position: relative;
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
}

.tab_ver2::-webkit-scrollbar{
    display: none;
}

.tab_ver2 li.current {
    color: var(--mainBlue);
}

.tab_ver2 li{
	display: flex;
	align-items:center;
	justify-content: center;
	width:100%;
}

.tab_ver2 li:not(.slider) {
    height: 50px;
    text-align: center;
}
.tab_ver2 li.on{
    color: var(--mainBlue);
    font-weight: 500;
}

.tab-content3{
	display: none;
	padding-top:
}

.tab-content3.current{
	display: inherit;
}

.tab-content{
	display: none;
}

.tab-content.current{
	display: inherit;
}
.round_tabnav{
    width: 100%; overflow: hidden;
    padding: 0 16px;
}
.round_tabnav li{
    padding: 16px;
    border-radius: 50px;
    border: 1px solid var(--mainBlue);
    color: var(--mainBlue);
    width: auto;
    cursor: pointer;
}
.round_tabnav li.current{
    background-color: var(--mainBlue);
    color: #ffffff;
    font-weight: 700;
}
/* pagination */
.swiper-pagination{z-index: 9;}
.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.pagination a{
    width: 34px; height: 34px;
    text-align: center;
    line-height: 34px;
    margin-right: 5px;
    border-radius: 10px;
}
.pagination a.current{
    background-color: #f0f4ff;
    color: var(--mainBlue);
}
.pagination a img{width: 24px;}
.pagination a:last-child{margin-right: 0;}

/* 팝업 */
.under_pop .card,
.undercenter_pop_pop .card{
    background-color: var(--popCard);
}

.under_pop_bg{
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 101;
    display: none;
}

.pop_bg{
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 115;
    display: none;
}
.alert_pop{
    padding: 40px 15px 20px;
}
.alert_pop p{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}
.alert_pop .pop_close{
    margin-top: 30px;
    position: initial;
    right: auto; top: auto;
}
.center_pop{
    display: none;
    position: fixed;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 20px;
    background-color: var(--popbg);
    box-shadow: 0 0 20px rgba(0,0,0,0.16);
    z-index: 116;
    width: calc(100% - 32px);
    max-width: 448px;
    overflow: hidden;
}
.center_pop h4{
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}
.center_pop .btn_wrap{
    display: flex;
    align-items: center;
}
.center_pop .btn_wrap button{width: calc(50% - 5px);}
.center_pop .btn_wrap button:first-child{
    margin-right: 10px;
    position: inherit;
}



.under_pop{
    position: fixed;
    bottom: -110%; left: 0;
    width: 100%;
    box-shadow: 0 -3px 20px 0 rgba(0, 0, 0, 0.16);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: var(--popbg);
    z-index: 102;
    transition: all 0.3s;
}

.under_pop h4{
    margin-bottom: 15px;
    font-size: 20px;
}
.under_pop.open{bottom: 0;}
.under_pop .pop_cont{
    max-width: 480px;
    margin: 25px auto 0;
    max-height: 80vh;
    overflow-y: auto;
    padding: 0 16px 100px;
    display: flex;
    flex-direction: column;
    -ms-overflow-style: none;
}

.under_pop .pop_cont::-webkit-scrollbar{
	display: none;
}


.under_pop .pop_cont > p{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}
.under_pop .pop_cont > p span{
    font-size: inherit;
    font-weight: inherit;
    color: var(--mainBlue);
}
.under_pop .gra_btn{
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.under_pop .gra_btn button{flex: 1; position: initial; right: auto; top: auto;}
.under_pop .gra_btn button:first-child{margin-right: 10px;}
.pop_close{
    position: absolute;
    top: 15px; right: 15px;
}
/* etc */
.scroll.contet{padding: 30px 16px;}
.cont_ttl1{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.cont_ttl2{
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
}
.badges_wrap{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: calc(100% - 40px);
}
.badges{
    padding: 0 10px;
    border-radius: 10px;
    height: 23px;
    line-height: 23px;
    font-size: 12px;
    color: var(--white);
    margin-right: 5px;
    margin-bottom: 5px;
}
.cunt_badge{
    height: 18px; width: 18px;
    border-radius: 50%;
    background-color: var(--red);
    color: #ffffff;
    font-weight: 700;
    position: absolute;
    left: 55%; top: 5px;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    display: block;
}
.new_badge{
    position: absolute;
    min-width: 20px;
    width: 20px;
    height: 20px;
    top: -3px;
    left: -3px;
    display: block;
    background-color: var(--red);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    line-height: 23px;
    text-align: center;
}
.pick_btn{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--borderGrey);
    padding: 5px;
    position: absolute;
    right: 10px; top: 10px;
}
.pick_btn.on{background-color: #ffc524;}

.noti_blue{
    height: 40px;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--mainBlue);
    text-align: center;
    line-height: 40px;
}
.noti_l_blue{
    height: 40px;
    font-weight: 700;
    color: var(--mainBlue);
    background-color: var(--bgBlue);
    text-align: center;
    line-height: 40px;
}
.tooltop_wrap{}
.tooltop_wrap > span{
    cursor: pointer;
    display: block;
    width: 20px; height: 20px;
    margin-left: 5px;
}
.tooltop{
    display: none;
    position: absolute;
    z-index: 10;
    top: 100%;
    background-color: #f0f4ff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
    width: max-content;
    max-width: 100%;
    color: #1F2933;
}
.tooltop > span{
    display: block;
    width: 100%;
    text-align: left;
    color: var(--textGrey);
}
/* loder */
.loader-bg{
    z-index: 103;
    position: fixed;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    display:none;
}
.loader {
    z-index: 104;
    position: fixed;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    font-size: 25px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: load5 1.1s infinite ease;
    transform: translateZ(0);
    display:none;
  }
  @keyframes load5 {
    0%,
    100% {
      box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
    }
    12.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
    }
    25% {
      box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }
    37.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }
    50% {
      box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }
    62.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }
    75% {
      box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }
    87.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
    }
  }
/* 퍼블 22-12-19 이후 내용*/

 /*테이블*/
.table_whole{
    width: 100%;
    height: auto;
    margin: 16px auto 0 auto;
    overflow: hidden;
    overflow-x: auto;
}
.table_whole::-webkit-scrollbar{
    display: none;
}
.table_whole thead{
    width: 100%;
    height: 39px;
    background-color: var(--bgBlue);
    border-bottom: 1px solid var(--disabledText);
}
.table_whole thead tr th{
    min-width: max-content;
    font-size: 15px;
    line-height: 19px;
    font-weight: normal;
    color: var(--defaultText);
    letter-spacing: -0.75px;
    text-align: center;
    padding: 10px;
    border-right: 1px solid var(--disabledText);
    border-bottom: 1px solid var(--disabledText);
    border-top: 1px solid var(--mainBlue);
}
.table_whole thead tr th,
.table_whole tbody tr td{
    vertical-align: middle;
}
.table_whole thead tr th:last-child{
    border-right: none;
}
.table_whole tbody{
    width: 100%;
    height: auto;
}
.table_whole tbody tr td{
    min-width: max-content;
    width: 100%;
    font-size: 15px;
    line-height: 19px;
    padding: 10px;
    text-align: center;
    border-right: 1px solid var(--disabledText);
    border-bottom: 1px solid var(--disabledText);
    white-space: nowrap;
}

/*이명준*/
.table_whole tbody tr td:nth-child(1){
    min-width: 100px;
}

.table_whole tbody tr td:nth-child(2){
    min-width: 100px;
}

.table_whole tbody tr td:last-child{
    border-right: none;
}
span.table_warning_icon{
    display: block;
    width: 24px;
    height: 24px;
    background: url('../images/warning.svg') no-repeat;
    background-size: contain;
}
.dark span.table_warning_icon{
    display: block;
    width: 24px;
    height: 24px;
    background: url('../images/warning-dk.svg') no-repeat;
    background-size: contain;
}
p.no_data_txt{
    font-size: 14px!important;
    line-height: 20px!important;
    font-weight: 400!important;
    color: #999!important;
    text-align: center!important;
    margin: 40px auto!important;
}
/* 2023-01-27 배경색 제거 (양봉현) */
p.no_data_txt.display_flex{
    margin: 0 auto!important;
	/*     background-color: var(--noData)!important;*/
	padding: 8px 0 7px 0!important;
	border-bottom: 1px solid var(--disabledText)!important;
}
p.no_data_txt.display_flex.no_data_bornone{
    border-bottom: none!important;
}
.sub_header h1, .sub_header h2 {
    font-size: 18px;
    font-weight: 500;
    margin-left: 12px;
}
.c-wh{
    color: var(--white);
}

.table_flex{
    display: flex;
    overflow: hidden;
    overflow-x: auto;
}
.table_flex::-webkit-scrollbar{display: none;}
.table_flex thead{
    width: auto;
    background: transparent;
    height: inherit;
    border: 0;
}
.table_flex tbody{
    display: flex;
}
.table_flex th, .table_flex td{
    display: block;
}
.table_flex thead tr th{
    background-color: var(--bgBlue);
    border: 0;
    border-bottom: 1px solid var(--disabledText);
    border-right: 1px solid var(--disabledText);
}
.table_flex thead tr th:first-child,
.table_flex tbody tr td:first-child{
    border-top: 1px solid var(--mainBlue);
}
.table_flex thead tr th:last-child{border-right: 1px solid var(--disabledText);}
.table_flex tbody tr td{border-right: 0;}

/*내 명함 등록시*/
.card_mine{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    background-color: var(--bgGrey);
}
.card_mine .group_name{
    line-height: 15px;
    margin-bottom: 5px;
    text-align: right;
}
.card_mine p.name span{
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    color: var(--white);
    padding: 4px 7px 1px 7px;
    border-radius: 20px;
    background-color: var(--mainBlue);
    margin-left: 10px;
}
.card_mine .matching{
    color: var(--textDarkGrey)!important;
}

.pick_btn img{
    display: block;
    width: 20px;
    height: auto;
    background-size: contain;
    margin: auto;
}
/*2023-01-10 monthPay5*/
.content.terms{
    padding-top: 74px;
}
/*2023-01-11*/
.c-bk{
    color: var(--defaultText);
}
.c-rd{
    color: var(--red);
}
.c-gr{
    color: var(--textGrey);
}
.c-dgr{
    color: var(--textDarkGrey);
}
.c-wh{
    color: var(--white);
}
.c-bu{
    color: var(--mainBlue);
}
.c-pu{
    color: var(--mainPurple);
}
#tooltip_title_Ai{
	color: var(--textDarkGrey);
}
.fw-400{
    font-weight: 400;
}
.fw-500{
    font-weight: 500;
}
.fw-bold{
    font-weight: bold;
}
.w-132{
    width: calc(100% + 16px);
}
.h-10{
    height: 10px;
}
.txt-over{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
p.input_date_between{
    font-size: 15px;
    margin: 0 7px 0 8px!important;
}
.bt_menu ul li.bt_menu_li2 span {
    background: url('../images/btm_menu2_off.svg') no-repeat;
}
.bt_menu ul li.bt_menu_li3 span {
    background: url('../images/btm_menu3_off.svg') no-repeat;
}
.bt_menu ul li.bt_menu_li4 span {
    background: url('../images/btm_menu4_off.svg') no-repeat;
}
.bt_menu ul li.bt_menu_li5 span {
    background: url('../images/btm_menu5_off.svg') no-repeat;
}
.bt_menu ul li.bt_menu_li1.active span {
    background: url('../images/btm_menu1_on.svg') no-repeat;
}
.bt_menu ul li.bt_menu_li2.active span {
    background: url('../images/btm_menu2_on.svg') no-repeat;
}
.bt_menu ul li.bt_menu_li3.active span {
    background: url('../images/btm_menu3_on.svg') no-repeat;
}
.bt_menu ul li.bt_menu_li4.active span {
    background: url('../images/btm_menu4_on.svg') no-repeat;
}
.bt_menu ul li.bt_menu_li5.active span {
    background: url('../images/btm_menu5_on.svg') no-repeat;
}
.dark .bt_menu ul li.bt_menu_li1.active span {
    background: url('../images/btm_menu1_on-dk.svg') no-repeat;
}
.dark .bt_menu ul li.bt_menu_li2.active span {
    background: url('../images/btm_menu2_on-dk.svg') no-repeat;
}
.dark .bt_menu ul li.bt_menu_li3.active span {
    background: url('../images/btm_menu3_on-dk.svg') no-repeat;
}
.dark .bt_menu ul li.bt_menu_li4.active span {
    background: url('../images/btm_menu4_on-dk.svg') no-repeat;
}
.dark .bt_menu ul li.bt_menu_li5.active span {
    background: url('../images/btm_menu5_on-dk.svg') no-repeat;
}
.pop_btn{
    width: calc(100% + 32px);
    height: 106px;
    padding: 30px 16px 20px 16px;
    margin: 0 -16px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white) 30%, var(--white));
    max-width: 480px;
    margin-top: 0!important;
}
.btn.middle{
    height: 46px;
    padding: 0 10px;
}
.pop_whole.pop_center .pop_box{
    width: calc(100% - 32px);
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    padding-bottom: 20px;
}
.pop_center .pop_box .pop_btn{
    height: auto;
    padding: 0 16px 20px 16px;
    background: transparent;
}

p.no_info_txt{
    font-size: 20px!important;
    line-height: 26px!important;
    font-weight: 700!important;
    color: var(--defaultText)!important;
    text-align: center!important;
    margin-top: 50px!important;
}

/*íŒì—…*/
.pop_whole{
    position: fixed;
    bottom: -110%;
    left: 0;
    width: 100%;
    max-width: 448px;
    box-shadow: 0 -3px 20px 0 rgba(0, 0, 0, 0.16);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: var(--popbg);
    z-index: 102;
    transition: all 0.3s;
    left: 50%;
    transform: translateX(-50%);
}
.pop_whole.pop_center{
    position: fixed;
    width: 100vw;
    height: 100vh;
    max-width: none;
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: transparent;
    z-index: 102;
    transition: all 0.3s;
    display: none;
}
.pop_whole.open{
    bottom: 0;
}
.pop_whole.pop_center.open{
    width: max-content;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
}
.popup_bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 101;
    display: none;
}
.popup_bg2{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 35;
    display: none;
}
.popup_bg3{
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.3);
}
.pop_box{
    position: absolute;
    width: 100vw;
    max-width: 448px;
    height: auto;
    padding: 25px 16px 20px 16px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: var(--popbg);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
    border-radius: 20px 20px 0 0;
    padding-bottom: 0!important;
}
.pop_whole.pop_center .pop_box{
    width: calc(100% - 32px);
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    padding-bottom: 20px;
}
.pop_box .pop_btn{
    width: calc(100% + 32px);
    height: 106px;
    padding: 30px 16px 20px 16px;
    margin: 0 -16px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white) 30%, var(--white));
    max-width: 480px;
    margin-top: 0!important;
}
.pop_center .pop_box .pop_btn{
    height: auto;
    padding: 0 16px 20px 16px;
    background: transparent;
}
.pop_btn button.btn_ok{
    display: block;
    margin: 0 auto;
}
span.no_info_icon{
    display: block;
    width: 64px;
    height: 64px;
    background: url('../images/exclamation_mark.svg') no-repeat;
    background-size: contain;
    margin-bottom: 20px;
}
.dark span.no_info_icon{
    display: block;
    width: 64px;
    height: 64px;
    background: url('../images/exclamation_mark-dk.svg')no-repeat;
    background-size: contain;
    margin-bottom: 20px;
}