/* reset */
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;
	font-size: 100%;
	vertical-align: baseline;
	box-sizing: border-box;
}
@font-face {
	font-family: 'Pretendard Variable';
	font-weight: 45 920;
	font-style: normal;
	src: url('../font/PretendardVariable.woff2') format('woff2-variations');
}
*{
    font-family: 'Pretendard Variable';
    border-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}
input:focus {
    outline: none;
}
a{
    text-decoration: none;
    color: inherit;
}
/* 색상변수 */
:root {
    --main-color: #243643;
    --sub1-color: #31A6FF;
    --sub2-color: #6e9fad;
    --sub3-color: #FFF8F3;
    --sub4-color: #f1f1f1;
    --sub5-color: #2AB514;
    --sub6-color: #ffffff;

    --black-050: hsl(0,0%,100%);
    --black-100: hsl(210,8%,98%);
    --black-150: hsl(210,8%,95%);
    --black-200: hsl(210,8%,90%);
    --black-225: hsl(210,8%,85%);
    --black-250: hsl(210,8%,80%);
    --black-300: hsl(210,9%,75%);
    --black-350: hsl(210,8%,68%);
    --black-400: hsl(210,8%,42%);
    --black-500: hsl(210,8%,25%);
    --black-600: hsl(210,8%,5%);
}
button:hover{
    cursor : pointer;
    opacity :0.7;
}
.modal-body input[readonly],
.modal-body textarea[readonly],
.modal-body select[readonly] {
    outline: none !important;
    user-select: text !important;
}
.modal-body input[readonly],
.modal-body textarea[readonly] {
    pointer-events: auto !important;
}
.modal-body select[readonly] {
    pointer-events: none !important;
}
/*로딩바*/
#loading-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.8);
    justify-content: center;
    align-items: center;
}
#loading-container #loading-bar {
    width: 30px;
}

/* 공통 유틸리티 */
#loading-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#loading-container #loading-bar {
    width: 30px;
}