@charset "UTF-8";

/* 헤더 */
header .header-inner {
    position: fixed;
    display: block;
    width: 100%;
    text-align: center;
    background: #fff;
    z-index: 150;
    border-bottom: 1px solid var(--gray100);
	position: relative;
	padding: 0 16px;
	height: 56px;
	line-height: 56px;
}
.header-title {}

/* 헤더 로고 */
.header-title .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 56px;
}
.header-title .logo img {
	width: 118px;
	height: 18px;
}

/* 헤더 타이틀 */
.header-title .title-text {
	color: var(--gray900);
	font-size: 16px;
	font-weight: bold;
}
.header-left,
.header-right {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	
}
.header-left {
	left: 16px;
}
.header-right a,
.header-left button,
.header-right button,
.header-left a,
.header-right input {
	position: relative;
	display: block;
	width: 24px;
	height: 24px;
}
.header-right a::after,
.header-left button::after,
.header-right button::after,
.header-left a::after,
.header-right input::after {
	content: '';
	position: absolute;
	top: 50%;
	display: block;
	width: 24px;
	height: 24px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	backface-visibility: hidden;
}
.header-right {
	right: 16px;
}
.header-right.right-56 {
	right: 56px;
}
.header-right a,
.header-right input {
	display: block;
}
.header-left button::after,
.header-left a::after {
	left: 0;
}
.header-right button::after,
.header-right a::after {
	right: 0;
}
.header .return-btn::after{
	background: url("../images/icon/ico_back_24.png") var(--bg-op24);
}

/* 메인탭 */
.menu-tab{
	display: flex;
	border-bottom:1px solid #eee;
	padding:0 16px;
}
.menu-tab li{
	height: 48px;
	line-height: 48px;
	text-align: center;
	width: 50%;
	font-weight: 500;
	color: #9e9e9e;
}
.menu-tab li.active{
	border-bottom:4px solid #212121;
	font-weight: bold;
	color: #212121;
}

/* 하단독바 */
.tab_bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FEFEFE;
    height: 62px;
    z-index: 10;
    border-top: 1px solid #EEEEEE
}
.tab_bottom ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:relative;
    padding:8px;
}
.tab_bottom ul li {
    width: 25%;
    text-align: center;
}
.tab_bottom ul li a {
    display: block;
    position: relative;
}
.tab_bottom ul li a img {
    height: 28px;
    width: 28px;
}
.tab_bottom ul li a span {
    display: block;
    font-weight: 500;
    color: #bdbdbd;
    font-size: 12px;
}
.tab_bottom ul li a.active::after {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 30px;
}
.tab_bottom ul li .tab_home.active::after {
	background: url("../images/bhms/icon/ico_home_act_28.png")no-repeat center 0/ 28px 28px;
}
.tab_bottom ul li .tab_point.active::after {
	background: url("../images/bhms/icon/ico_point_act_28.png")no-repeat center 0/ 28px 28px;
}
.tab_bottom ul li .tab_loca.active::after {
	background: url("../images/bhms/icon/ico_loca_act_28.png")no-repeat center 0/ 28px 28px;
}
.tab_bottom ul li .tab_my.active::after {
	background: url("../images/bhms/icon/ico_my_act_28.png")no-repeat center 0/ 28px 28px;
}
.tab_bottom ul li a.active span {
	color: #212121;
}

.countWrap{
	padding:13px 16px;
	background: #f5f5f5;
}
.countWrap b{
	font-weight: bold;
	color: var(--primary);
}

.modalWrap{
	display:none;
    position: fixed;
    z-index: 150;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.modalBox{
    margin:20vh auto;
    padding:40px 24px;
    position: relative;
    background: #fff;
    border-radius: 8px;
    width: 80%;
    text-align: center;
}
.modalBox .modalClose{
	width: 24px;
	height: 24px;
	background: url("../images/icon/ico_close_24.png") var(--bg-op24);
	position: absolute;
	top:8px;
	right:8px;
}
.modalBox .pwInput{
	height: 40px !important;
}