body {
	/*overflow-y:scroll;*/
}
img { max-width:100%; }

.ellip{
	display:block;
	text-overflow:ellipsis;
	white-space:nowrap;
	word-wrap:normal;
	overflow:hidden;
}
.nodrag {
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	user-select:none;
}
.check-big {
	width:15px;
	height:15px;
	vertical-align:-3px;
}
.check-big2 {
	width:20px;
	height:20px;
	vertical-align:-5px;
}
.ellip{
	display:block;
	text-overflow:ellipsis;
	white-space:nowrap;
	word-wrap:normal;
	overflow:hidden;
}

@media all and (min-width:1025px){
	/* 데스크탑 CSS 작성 */
}
@media all and (min-width:768px) and (max-width:1024px){
	/* 태블릿 및 노트북 CSS 작성 */
}
@media only screen and (max-width:480px){
	/* 모바일 */
}

/*
@ import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);
@ import url(http://fonts.googleapis.com/earlyaccess/nanumbrushscript.css);
@ import url(http://fonts.googleapis.com/earlyaccess/nanumgothiccoding.css);
@ import url(http://fonts.googleapis.com/earlyaccess/nanummyeongjo.css);
@ import url(http://fonts.googleapis.com/earlyaccess/nanumpenscript.css);
*/


#toast {
	position: fixed;
	bottom: 350px;
	left: 50%;
	padding: 15px 20px;
	transform: translate(-50%, 10px);
	border-radius: 11px;
	overflow: hidden;
	font-size: 1.2rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s, visibility .2s, transform .5s;
	background: rgba(0, 0, 0, .8);
	color: #fff;
	z-index: 99999;
}

#toast.reveal {
	opacity: 0.8;
	visibility: visible;
	transform: translate(-50%, 0)
}