/* CSS RESET */
@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 컨테이너 */
.wrapper {
    min-width: 320px;
    max-width: 720px;
    margin: 0 auto;
}

/* Header */
header p{
    color: #00297a;
    font-size: 7vmin;
    text-align: center;
    font-weight: bold;
    margin: 10px;
}

/* content */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content img {
    height: auto;
    max-width: 100%;
}

/* 코로나-19 검사시작 버튼 */
.startBtnBox {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -5px;
    padding: 20px;
    background: #0c519f;
}

.startBtn {
    width: 240px;
    background: #ed680b;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-weight: bold;
    font-size: 24px;
    line-height: 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}

.startBtn:hover {
    color: #fff;
}

/* 김제 시장님 */
.gimje {
    width: 100%;
    height: 100%;
    background: #0c519f;
    margin-top: -6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gimjeBox {
    width: 91%;
    padding: 0 10px;
    border: 1.8px solid #e5e931;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.gimje img {
    height: auto;
    max-width: 40vw;
}

.gimje_text > p:first-child {
    color: #e5e931;
    font-size: 8vmin;
    font-weight: bold;
}

.gimje_text > p:last-child {
    color: #fff;
    font-size: 4.5vmin;
    text-align: center;
    
}

/* 코로나-19 검진 시작 팝업 */
.startPopupRoot {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 5;
    justify-content: center;
    align-items: flex-end;
    display: none;
}

.startPopup, .studentPopup {
    width: 90%;
    height: 215px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.input-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2px;
}

.input-box label {
    margin: 5px;
}

.input-box input {
    padding: 0 3px;
}

/* exam.php */
.paper {
    width: 100%;
    height: 900px;
}

.inner {
    padding: 20px;
    padding-top: 100px;
    border: 5px solid rgb(38, 93, 184);
}

.question h6 {
    font-weight: 600;
    line-height: 23px;
}

.question .top {
    background: #ededed;
    border: 1px solid #ddd;
    border-left: 8px solid #ddd;
    margin: 10px 0;
    padding: 10px;
}

.question .center img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, .5);
    margin: 10px 0;
}

.question .bottom {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.question .bottom {
    width: 100%;
}

.question .bottom img {
    width: 40%;
    margin: 40px 0;
    cursor: pointer;
}

/* Footer */
footer {
    width: 100%;
    height: 100%;
    background: #eee;
    /* margin-top: -5px; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

footer img {
    max-width: 80vw;
}

.footerBox {
    margin-top: 5px;
}

.footerBox p {
    margin: 2px;
}