/*
 * author: Kyuchang Lee
 * email: skynsoul@naver.com
 * date: 2017/9/28
 * version: 1.0
 */

.picker * {
	font-family: "tahoma";
	box-sizing: border-box;
	color: #333;
	font-size: 14px;
	text-align: center;
}

.picker {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	display: block;
	min-width: 70px;
	padding: 5px;
	margin: 3px 0 0;
	text-align: left;
	background-clip: padding-box;

	box-shadow: 0 0 15px 0px rgba(0,0,0,0.1);
	background-color: #fff;
}

/*
.picker:before {
	content: '';
	position: absolute;
	display: inline-block;
	left: 10px;
	top: -7px;
	border-right: 7px solid transparent;
	border-left: 7px solid transparent;
	border-bottom: 7px solid #ccc;
}

.picker:after {
	content: '';
	position: absolute;
	display: inline-block;
	left: 11px;
	top: -6px;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
}
*/

.picker>.picker-first,
.picker>.picker-second {
	vertical-align: top;
}

.picker table {
	width: 100%;
	border-spacing: 1px;
}

.picker .title {
	cursor: default;
	padding:0 2px;
	font-size: 12px;
}
.picker .title:hover {
	cursor: default;
	background-color: #fff;
}
.picker .title.left {
	text-align: left;
}
.picker .title.center {
	text-align: center;
}
.picker .title.right {
	text-align: right;
}

.picker td:hover,
.picker th:hover,
.picker-bottom .bottom-btn:hover {
	background: #ededed;
	cursor: pointer;
}

.picker td.active {
	background-color: #f20018;
	color: #fff;
}

.picker td,
.picker th {
	text-align: center;
	height: 17px;

	border: 0;
	padding: 4px 1px;

	font-size: 11px;
	border-radius: 4px;
}

.picker .icon-arrow-left {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-top: 2px;
	line-height: 14px;
	vertical-align: text-top;
	background-image: url('./glyphicons-halflings.png');
	background-position: -240px -96px;
	background-repeat: no-repeat;
}

.picker-bottom {
	margin-top: 5px;
}

.picker-bottom .bottom-btn {
	display: inline-block;
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, .15);
	font-weight: 500;
}
