﻿
/* reset */
@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:400,500,700,900&display=swap&subset=korean');

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, enter, dl, dt, dd, ol, ul, li,fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0; padding: 0; border: 0; font-size: 100%; vertical-align: middle; background: transparent; font-style: normal;
}
html, body, select, input , button, textarea{
    width: 100%; font-family: 'SUIT', sans-serif; letter-spacing: -0.8px; color: #2b2b2b; 
    -webkit-text-size-adjust : 100% !important;  /* 크롬, 사파리, 오페라 신버전 */
    -ms-text-size-adjust : 100% !important;  /* IE */
    -moz-text-size-adjust : 100% !important;  /* 파이어폭스 */
    -o-text-size-adjust : 100% !important;  /* 오페라 구버전 */
    overflow-x:hidden;
}
article,aside,details,figcaption,figure,footer,hgroup,menu,nav,section { 
	display:block;
}
button{ border: none; background: none; font-family: 'SUIT', sans-serif; cursor: pointer; }
ol, ul, li { list-style: none; }
a { text-decoration: none; color: #333; }
table { border-collapse: collapse; border-spacing: 0; }





.header{
    width: 100%;
    height: 80px;
    line-height: 80px;
    margin: auto;
    border-bottom: 1px solid #ECECEC;
    position: fixed;
    top: 0;
    z-index: 2;
    background: #fff;
}
.header_wrap{
    max-width: 620px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.header h1{
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}
.order{
    display: flex;
}
.header p{
    font-size: 17px;
    font-weight: 500;
    margin-left: 40px;
    cursor: pointer;
}
.header h1:hover{
    color:#0091F6;
    font-weight: 800;
}
.header p:hover{
    color:#0091F6;
}

.footer{
    width: 100%;
    height: 120px;
    margin: auto;
    border-top: 1px solid #ECECEC;
}
.footer_wrap{
    width: 620px;
    margin: auto;
}
.footer_wrap>div{
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.footer p{
    color: #8C9195;
}

@media (max-width:1080px) {

    .header_wrap{
        width: 94%;
    }

}

@media (max-width:640px) {

    .footer {
        height: 205px;
    }
    .footer_wrap{
        width: 96%;
    }
    .footer_wrap > div {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .footer p{
        margin-bottom: 10px;
    }
    .footer span{
        display: none;
    }
    .header h1{
        font-size: 15px;
    }
    .header p{
        font-size: 15px;
    }
    .footer{
        font-size: 14px;
        height: 190px;
    }
    .footer_wrap > div {
        margin-top: 40px;
    }

}



.loading{
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    height: 100vh; 
    z-index: 10;
    top: 0;
    left: 0;
}
.loading img{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    z-index: 1;
    width: 220px;

}