@charset "UTF-8";

/*
	Document	: buttons.css
	Created on	: 15. 02. 01
	Author		: Nexist
	Description	: 버튼 스타일 시트입니다.
*/

#buttons{padding:50px;text-align:center}
.btnArea { padding: 20px 20px 40px 20px; text-align: center; }
/* 버튼 설정 */
.btn {
	display:inline-block;
	font-family: 'NanumSquare';
	overflow:visible;
	position:relative;
	font-size: 13px;
	font-weight: 300;
	margin:0;
	padding: 3px 6px;
	color: #666;
	background: #fff;
	border: solid 1px #ddd;
	border-radius: 3px;
	text-decoration:none !important;
	white-space:nowrap;
	cursor:pointer;
}

.btn.small {
	padding: 2px 6px;
	font-size: 12px;
	font-weight: 400;
	background: #fff;
	border: solid 1px #ddd;
	border-radius: 3px;
}

.btn.large {
	padding: 6px 12px;
	font-size: 17px;
	font-weight: 300;
	background: #fff;
	border: solid 1px #ddd;
	border-radius: 3px;
}

.btn:hover,.btn.on,.btn:focus { background: #2bc5c5; color: white; border: solid 1px #26b4b3; text-shadow: 0 0 3px rgba(0,0,0,0.4);
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-ms-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
.btn:active { background: #e3624c;  color: white; border: solid 1px #ee6644; text-shadow: 0 0 3px rgba(0,0,0,0.4);
	-webkit-transition: 0.1s ease-out;
	-moz-transition: 0.1s ease-out;
	-ms-transition: 0.1s ease-out;
	-o-transition: 0.1s ease-out;
	transition: 0.1s ease-out;
}

/* //버튼 설정 */

.btn.ready {
	opacity: 0.4;
}
.btn.red {
	color: #fff;
	background: #e3624c;
	border: solid 1px #ee6644;
	border-radius: 3px;
	text-decoration:none !important;
	white-space:nowrap;
	cursor:pointer;
}

.toggleBtn {
	display:inline-block;
	overflow:hidden;
	position:relative;
	margin:0;
	color: #666;
	text-decoration:none !important;
	text-align: center;
	white-space:nowrap;
	cursor:pointer;
	padding: 3px 3px 3px 34px;
	height:37px;
	width: 68px;
	font-size: 0;
	line-height: 300%;
	background: #ddd;
	border: none;
	border-width: 0 0 0 34px;
	border-radius: 20px;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2) inset;
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-ms-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
.toggleBtn:after {
	display:inline-block;
	overflow:hidden;
	position:relative;
	margin:0;
	color: #666;
	background: white;
	text-decoration:none !important;
	white-space:nowrap;
	cursor:pointer;
	padding: 0;
	height:31px;
	width: 31px;
	font-size: 0;
	content: ' ';
	border-radius: 20px;
	box-shadow:0px 0px 3px rgba(0,0,0,0.2);
}
.toggleBtn.on {
	background: #82D889;
	border-color: #82D889;
}
.toggleBtn.off {
	padding: 3px 34px 3px 3px;
	background: #e3624c;
	border-color: #e3624c;
}

.toggleBtn.small {
	padding: 2px 0 2px 16px;
	height:20px;
	width: 36px;
}
.toggleBtn.small.off {
	padding: 2px 16px 2px 0;
	background: #e3624c;
	border-color: #e3624c;
}

.toggleBtn.small:after {
	height:16px;
	width: 16px;
	box-shadow:0px 0px 2px rgba(0,0,0,0.2);
}

.toggleBtn.disabled {
	background: #eee !important;
	border-color: #eee !important;
}

.btn.disabled {
	color: #ddd !important;
	background: #f3f3f3 !important;
	border-color: #eee !important;
	cursor: no-drop;
}
