.header{
    top:0;
    background-color: white;
    z-index: 99;
    position: fixed;
    width: 100%;
    height: 2.5rem;
    
}   
.h_logo{
    
    /*transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    position:absolute;
    width: 4.5rem;
    height: 1rem; */
    
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto;
}
.h_logo>a{
    display: flex;
    justify-content:center;
    align-items:center;
    font-size:19px;
    font-weight:bold;
}
.h_logo>a>img{
    width: 6rem;
    height: 1.5rem;
}
.ham_btn{
    z-index: 101;
    position: absolute;
    width: 1rem;
    height: 1rem;
    display: flex;
    flex-direction: column;
    top: 0.8rem;
    left: 1rem;
    box-sizing: border-box;
    padding: 0.15rem 0;
}
.ham_btn *{
    transition: all 0.5s;
}
.ham_btn>li{
    width: 100%;
    height: 0.05rem;
    background: #666d75;
    margin-top: 0.25rem;
}
.ham_btn>li:first-child{
    margin: 0;
}
.ham_btn>li:last-child{
    margin-bottom: 0.05rem;
}


.kdw_btns {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.ham_menu{
    transition: left 0.5s;
    z-index: 101;
    position: fixed;
    width: 11.5rem;
    height: 100vh;
    top: 0;
    left: -11.55rem;
    /* opacity: 0.5; */
    background-color: white;
}
.ham_bg{
    z-index: 100;
    position:fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    visibility: hidden;
    opacity: 0;
}                   
.ham_bg.active{
    background-color: black;
    visibility: visible;
    opacity: 0.4;
}
.ham_menu.active{
    left: 0;
}
.ham_logo{
    border-bottom: 0.05rem solid #dfdfdf;
    position: relative;
    height: 4rem;
    width: 100%;
}
.ham_logo>a{
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    position:absolute;
    width: 4.4rem;
    height: 1rem;
}
.ham_gnb{
    overflow-y: auto;
    width: 100%;
    height: calc(100% - 17rem);
}
.ham_gnb_li{
    line-height: 2.5rem;
    border-bottom: 0.05rem solid #dfdfdf;
}
.ham_gnb_li a, .ham_gnb_li p{
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 1.25rem;
    box-sizing: border-box;
}
.ham_snb{
    display: none;
    background-color: #f8f8f8;
}
.ham_in_btns{
    height: 10rem;
    display:flex;
    flex-direction: column;
    align-items: center;
}
.ham_in_btn{
    text-align: center;
    border-radius: 5px;
    width:9.25rem;
    line-height: 2.5rem;
    border:0.05rem solid #ced4da;
    margin: 0.25rem 0;
}
.ham_in_btn>a{
    display: block;
}
.ham_join>a{
    background-color: var(--main-color);
    color: white !important;
    border-radius: 4px;
}
.manager-page{
    position: sticky;
    top: 0;
    height: 2.5rem;
    z-index:99;
}
.manager-page > .header{                
    background-color: var(--main-color);
}
.manager-page > .header > .ham_btn > li{
    background:white;
    
}         