@charset "utf-8";

@import url("./pretendard-subset.css");

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,
center,
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;
    vertical-align: baseline;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    font-size: inherit;
    font-weight: normal;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    display: inline-block;
    vertical-align: middle;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    background-color: transparent;
    font-family: "Pretendard", sans-serif;
    font-size: 14px;
}

label {
    display: block;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    font-family: "Pretendard", sans-serif;
    outline: none;
    font-size: 14px;
    box-sizing: border-box;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"],
input[type="week"] {
    width: 100%;
    border: var(--border-style-01);
    border-radius: 3px;
    padding: 6px 10px;
}
input[type="text"] {
    width: 184px;
}

input[type="radio"],
input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 184px;
    border: var(--border-style-01);
    border-radius: 3px;
    padding: 5px 36px 6px 10px;
    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    background: no-repeat url("/public/assets/images/sub/ico-select.svg") right 13px center;
}

input[type="text"]:hover,
input[type="text"]:focus,
select:hover,
select:focus {
    border: 1px solid #121212;
}

/* input */
/* .input-item {
    flex: 1;
} */

.blind {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: 0;
}

:root {
    /* 색상값 */
    --color-primary-blue: #4e78ba;
    --color-primary-orange: #fe792e;
    --color-backdrop-bg: rgba(0 0 0 / 60%);
    --color-font-default: #121212;
    --color-white: #ffffff;
    --color-light-gray: #dcdcdc;
    --color-light-gray2: #f8f8f8;
    --color-light-gray3: #707070;
    --color-point-red: #ee0c0c;
    --color-point-blue: #206bec;
    --color-light-blue: #f4f8fb;

    /* border */
    --border-style-01: 1px solid #dcdcdc;
    --border-style-02: 1px solid var(--color-primary-blue);
    --border-style-03: 1px solid transparent;
}

#body-wrap {
    position: relative;
    min-width: 1440px;
    min-height: 100vh;
    padding-top: 60px;

    line-height: 1.2;
    font-weight: 400;
    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    letter-spacing: -0.16px;
    color: var(--color-font-default);
    word-break: keep-all;
}

body.bg-on {
    overflow: hidden;
}

body.search-on {
    padding-right: 15px;
    overflow: hidden;
}

body.search-on #header .logo {
    margin-left: -7px;
    z-index: 4;
}

body.search-on .header-wrap {
    padding-right: 7px;
}

#container {
    /* 브라우저 높이 - 헤더 높이 - 서브메뉴 - 푸터 높이 */
    min-height: calc(100vh - 60px - 41px - 190px);
    box-sizing: border-box;
}

/* 메인은 기본폰트 14px, 서브는 15px */
#container.sub {
    font-size: 15px;
    line-height: 1.46;
}

/*text */
.text-right {
    text-align: right !important;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}

.text-bold {
    font-weight: 700;
}

.text-bold2 {
    font-weight: 600;
}

/* width */
.w100p {
    width: 100% !important;
}
.w250 {
    width: 250px !important;
}

/* margin */
.mgl_15 {
    margin-left: -15px !important;
}
.mgr_15 {
    margin-right: -15px !important;
}
