* {
	margin: 0;
	padding: 0;
}

html, body {
	position: absolute;
	width: 100%;
	height: 100%;
}

body, input, textarea, select, button, table {
	font-family: 'Helvetica Neue', Helvetica, Arial, '나눔고딕', NanumGothic, '맑은 고딕', 'Malgun Gothic', '돋움', Dotum, '굴림', Gulim, Helvetica, sans-serif;
}

.fade-in {
	animation: fadeIn ease 0.5s;
	-webkit-animation: fadeIn ease 0.5s;
	-moz-animation: fadeIn ease 0.5s;
	-o-animation: fadeIn ease 0.5s;
	-ms-animation: fadeIn ease 0.5s;
}
@keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@-moz-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@-o-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@-ms-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@media (min-width: 1024px) {
	/* width */
	::-webkit-scrollbar {
		width: 10px;
		height: 10px;
	}

	/* Track */
	::-webkit-scrollbar-track {
		background: #f1f1f1;
		border-radius: 10px;
	}
	 
	/* Handle */
	::-webkit-scrollbar-thumb {
		background: #999;
		border-radius: 10px;
		border-top: 1px solid #f1f1f1;
		border-bottom: 1px solid #f1f1f1;
	}

	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
		background: #aaa; 
	}
}

.flex-container { display: flex; flex-direction: column; min-height: -webkit-fill-available; }
.flex-center { display: flex; justify-content: center; }
.flex-left { display: flex; justify-content: flex-start; }
.flex-right { display: flex; justify-content: flex-end; }