/* CSS RESET */

@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&family=Oxygen&family=Single+Day&family=Yeon+Sung&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oxygen', sans-serif;
    color: #444;
}

@keyframes bounce {
    0% {
        bottom: 40px;
    }

    45% {
        bottom: 50px;
    }

    50% {
        bottom: 50px;
    }

    95% {
        bottom: 40px;
    }

    100% {
        bottom: 40px;
    }
}

html, body {
    width: 100%;
    height: 100%;
}

.container {
    min-height: calc(100% - 30px) !important;
}

a {
    color: #444;
}

a:hover {
    color: #444;
}

hr {
    margin: 18px 0;
    border-top: 1px solid #a1a1a1;
}

/* Header */

header {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.logoutBtn {
    position: absolute;
    top: 30px;
    right: 0px;
    font-size: 14px !important;
}

.adminBtn {
    position: absolute;
    top: 30px;
    left: 0px;
    font-size: 14px !important;
}

header img {
    width: 200px;
}

header h1 {
    margin: 0;
    font-size: 30px;
    font-family: 'Oxygen', sans-serif;
    font-weight: 900;
}

/* Main */

.main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#orderID {
    font-size: 16px;
}

.inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.inner p {
    font-size: 16px;
}

#iidForm {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 15px;
}

.inner textarea {
    width: 80%;
    height: 200px;
    margin: 10px;
    border: 1px solid #a1a1a1;
    outline: none;
    padding: 10px;
    resize: none;
    font-size: 21px;
}

#orderIdForm {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
}

.orderIdTop, .orderIdBottom {
    width: 100%;
    height: 100px;
    margin: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#orderIdForm input {
    width: 50%;
    height: 45px;
    border: 1px solid #a1a1a1;
    border-radius: 7px;
    outline: none;
    padding: 10px;
}

/* Footer */

footer {
    width: 100%;
    height: 30px;
    background-color: #252525;
}

footer p {
    height: 100%;
    color: #fff;
    margin: 0;
    padding: 5px;
    text-align: center;
}

/* Help 도움말 센터 */

.help {
    width: 135px;
    height: 45px;
    position: fixed;
    bottom: 40px;
    right: 20px;
    background: #1F73B7 !important;
    border-radius: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: bounce 3s infinite;
    overflow: hidden;
    white-space: nowrap;
    white-space: normal;
}

.help p , .help svg, #helpTitle{
    color: #fff;
    fill: #fff;
}

/* admin 페이지 */
.secretPW, .viewOrderID {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 50px;
}

.secretPW p, .viewOrderID p, .adminForm h1 {margin: 0;}

.adminInput {
    margin: 0 10px;
    border: 1px solid #000;
    outline: none;
    padding: 5px;
    font-size: 20px;
}

.adminForm {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.accountControl, .viewerControl {
    padding-bottom: 50px;
}

@media(max-width: 800px) {
    .help {
        width: 40px !important;
        height: 40px !important;
        right: 5px !important;
    }

    #helpTitle {
        display: none !important;
    }

    .popupTitle {
        font-size: 3vh !important;
    }

    .popupContent {
        font-size: 2vh !important;
    }
}

@supports (-webkit-overflow-scrolling: touch) {
    /* CSS specific to iOS devices */
    #orderID {
        font-size: 16px;
    }
}