@charset "utf-8";

/** 
 * @author dfgm
 */

.toast {
	visibility: hidden;
	min-width: 250px;
	margin: auto; /* 가로 중앙 정렬을 위해 추가 */
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 1;
	left: 0;
	right: 0; /* 가로 중앙 정렬을 위해 left 및 right 설정 */
	bottom: 30px;
}

.toast.show {
	visibility: visible;
}