/* 폰트 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSansBold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* 초기값 */
*{
    margin: 0;
    padding: 0;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

html,body{
    height:100%;
}

body{
    color: #333;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif !important;
}

#wrap{
    width: 100%;
    overflow: hidden;
}

.center{
    width: 1400px;
    margin: 0 auto;
}

select::-ms-expand{
    display:none;
}

select{
    width: 100%;
    height: 100%;
    position: absolute;
    border: 0;
    outline: 0;
    padding-left: 10px;
    box-sizing: border-box;
    appearance: none;
    background-color: transparent;
    cursor: pointer;
    color: #333;
}

input{
    outline: 0;
    padding: 0 10px;
    box-sizing: border-box;
}

input::placeholder{
    font-size: 90%;
}

input:-ms-input-placeholder{
    font-size: 90%;
}

textarea{
    outline: 0;
    resize: none;
    padding: 10px;
    box-sizing: border-box;
}

input[type='button']{
    cursor: pointer;
    padding: 0;
}

button{
    border: 0;
    outline: 0;
    cursor: pointer;
}

::-webkit-calendar-picker-indicator{
    margin-left: 0px;
    font-size: 14px;
}
































/* mobile */
@media screen and (max-width: 767px){
    
    .center{
        width: 93%;
    }

    input[type='text'],input[type='password'],input[type='button'],input[type='date'], textarea, button {
      appearance: none;
      -moz-appearance: none;
      -webkit-appearance: none;
      border-radius: 0;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
    }
}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){
    
    .center{
        width: 93%;
    }

    input[type='text'],input[type='password'],input[type='button'],input[type='date'], textarea, button {
      appearance: none;
      -moz-appearance: none;
      -webkit-appearance: none;
      border-radius: 0;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
    }

}

























/* pc_s */
@media screen and (min-width: 1025px) and (max-width: 1400px){
    
    .center{
        width: 90%;
    }

    input[type='text'],input[type='password'],input[type='button'],input[type='date'], textarea, button {
      appearance: none;
      -moz-appearance: none;
      -webkit-appearance: none;
      border-radius: 0;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
    }

}