@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+KR:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('main_new.css');
@import url('sub_new.css');

/* 관리자 모드, 일반페이지 공통 CSS */
html {
    height: 100%;
    -webkit-font-smoothing: antialiased;
}

* {
    outline: none;
    font-family: "Montserrat", "Noto Sans KR", sans-serif;
    font-weight: 400;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    color: #444;
    /*letter-spacing: 0.04em;*/
    word-spacing: -1px;
    -webkit-text-size-adjust: none;
    position: relative;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
select,
textarea,
p,
blockquote,
th,
td,
button {
    outline: none;
    vertical-align: baseline;
    font-size: 100%;
    margin: 0;
    padding: 0;
    /*word-break: break-all;*/
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-os-font-smoothing: grayscale;
    font: inherit;
}

button {
    overflow: visible;
    border: none;
    box-shadow: none;
    background: transparent;
    cursor: pointer;
    border-radius: 0;
    padding: 0;
}

input,
textarea,
select,
button {
    display: inline-block;
    outline: none;
    color: initial;
    text-align: start;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none;
    word-spacing: normal;
    text-indent: 0px;
    text-rendering: auto;
    margin: 0em;
}

section,
nav,
article,
aside,
hgroup,
header,
footer {
    display: block;
}

form,
fieldset,
img {
    border: 0 none;
}

table {
    border: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

em {
    font-style: normal;
}

ul,
ol,
li {
    list-style: none outside;
    margin: 0;
    padding: 0;
}

input,
select {
    border: 0;
    outline: none;
    vertical-align: middle;
}

a {
    color: #444;
    text-decoration: none;
    cursor: pointer;
}

li,
p,
dt,
dd,
div,
span {
    word-break: break-all;
}

legend,
caption,
.skip,
.blind {
    width: 0;
    height: 0;
    visibility: hidden;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    margin: 0;
    padding: 0;
}

img {
    border: 0 none;
}

input[type='text'],
input[type='password'],
input[type='tel'],
input[type='number'],
input[type='search'],
input[type='email'],
textarea {
    outline: none;
    background: #fff;
    color: #444;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    padding-left: 7px;
}



button,
input[type='button'],
input[type='submit'],
input[type='reset'] {
    border: none;
    text-decoration: none;
    cursor: pointer;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

label.pointer {
    cursor: pointer;
}

.hidden {
    display: none;
}

.cursor_pointer {
    cursor: pointer;
}

.center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

legend,
caption {
    width: 0px;
    height: 0px;
    overflow: hidden;
    font-size: 0px;
    line-height: 0px;
}

/* hidden */

iframe.hidden_iframe {
    width: 0px;
    height: 0px;
    border: 0px;
    margin: 0px;
    padding: 0px;
}

#MainModalCtn{
    width:600px;
    height:865px;
    display: block;
    -webkit-box-shadow:1px -1px 7px 11px #00000033;
    -ms-box-shadow: 1px -1px 7px 11px #00000033;
    -o-box-shadow: 1px -1px 7px 11px #00000033;
    -moz-box-shadow: 1px -1px 7px 11px #00000033;
    box-shadow: 1px -1px 7px 11px #00000033;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position:fixed;
    top: 50%;
    left: 50%;
    z-index: 9999999;

    /* .MainModalBtn{
        width: 50px;
        height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        right: 10px;
        font-size: 30px;
        margin: 0 auto;
        color: #fff;
        background-color: #000000;
        position: absolute;
        top: 0;
        right: -50px;
    } */
     .btn_area{
        height:40px;
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #444;
        padding:0 15px;
        position:relative;
        top:-5px;

        button{ 
            font-size:16px;
            color:#fff;
            &:hover{
                text-decoration: underline;
            }
        }
     }
}