@charset "UTF-8";

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

@font-face {
    font-family: 'Pretendard-Regular';
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url('../font/Pretendard-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Pretendard-SemiBold';
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url('../font/Pretendard-SemiBold.woff2') format('woff2');
}      

html {
    font-size: 10px;
    font-family: 'Pretendard-Regular';
    -webkit-tap-highlight-color : transparent;
}

html, body   {width: 100%; height: 100%;}

#container {
    position: relative;
    width: 100%;
    height: 100%;
}

#wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

#header .header-top {
    position: relative;
    width: 100%;
    height: 80px;
    border-bottom: 3px solid #e4e4e4;
}
#header .top-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 23.06%;
}
#header .btn-logout {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 5.28%;
}

#header .menu {
    width: 100%;
    height: 80px;
    text-align: center;
    border-bottom: 2px solid #e4e4e4;
}
#header .menu .lateness {
    display: inline-block;
    width: 15%;
}




.popup-wrap {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
}
.popup-wrap.on {
    display: block;
}

.popup-wrap .message-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    padding: 5%;
    transform: translate(-50%, -50%);
    /* border-radius: 5%; */
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
    font-family: 'Pretendard-SemiBold';
}

@media (min-width: 500px) {
    .popup-wrap .message-box {
        max-width: 300px;
        padding: 1%;
    }
}

.popup-wrap .title-line {
    font-size: 1.5rem;
}

.popup-wrap .btn-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 25px;
}
.popup-wrap .btn-line button {
    width: 45%;
    line-height: 45px;
    color: #fff;
    border-radius: 5px;
    font-family: 'Pretendard-SemiBold';
    font-size: 1.5rem;
}

.popup-wrap .btn-line button.btn-yes {
    background-color: #bc2f2c;
}
.popup-wrap .btn-line button.btn-no {
    background-color: 
    #7c7c7c;
}