@charset "UTF-8";

/*
	Document	: buttons.css
	Created on	: 15. 02. 01
	Author		: Nexist
	Description	: 버튼 스타일 시트입니다.
*/

.btn.bgConceptWhiteBlue { background: #fff; color: #ff7800; border: 1px solid #ff7800}
.btn.bgConceptBlue, .btn.bgConceptWhiteBlue:hover { background: #ff7800; color: #fff; border: 1px solid #ff7800}
.fullBtn {width: 100%; box-sizing: border-box; border-radius: 3px}
.btn.bgWhite {background: #fff; border: 1px solid #404040 !important}
.btn.grayDDD {border: 1px solid #ddd; color: #999}
.btn.black {border: 1px solid #000; color: #000}

#buttons{padding:50px;text-align:center}
.btnArea { padding: 20px 20px 40px 20px; text-align: center; }
/* 버튼 설정 */
.btn {
	display:inline-block;
	overflow:visible;
	position:relative;
	margin:0;
	padding: 3px 6px;
	color: #666;
	border-radius: 3px;
	text-decoration:none !important;
	white-space:nowrap;
	cursor:pointer;
	-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.small {
	padding: 2px 4px;
	font-size: 12px;
	border-radius: 3px;
}

.btn.medium {
	padding: 4px 8px;
	font-size: 14px;
	border-radius: 3px;
}

.btn.large {
	padding: 8px 12px;
	font-size: 16px;
	border-radius: 3px;
}

/*.btn.on,
.btn:hover { background: #0ae; color: white !important; }
.btn:active { background: #75c6e6;  color: white !important;
	-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.readonly { background: #fff !important; color: #666 !important; }

/* //버튼 설정 */

.btn.red {
	color: #fff !important;
	background: #e3624c;
	border: solid 1px #ee6644;
	border-radius: 3px;
	text-decoration:none !important;
	white-space:nowrap;
	cursor:pointer;
}

.btn.pink {
	background: #ff98a7;
	color: #fff;
	border: 1px solid #FF98A7;
}

.btn.gray {
	background: #aaa;
	border: 1px solid #aaa;
	color: #fff;
}
.btn.gray:hover {
	color: #fff !important;
	background: #777;
	border: solid 1px #777;
	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;
	white-space:nowrap;
	cursor:pointer;
	padding: 3px 3px 3px 40px;
	height:31px;
	width: 31px;
	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 40px 3px 3px;
	background: #e3624c;
	border-color: #e3624c;
}
