.bootpicker {
	padding: 4px;
	margin-top: 1px;
	z-index: 3000;
	border-radius: 4px;
	min-width: 80px;
}

.bootpicker:before {
	content: '';
	display: inline-block;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-bottom-color: rgba(0, 0, 0, 0.2);
	position: absolute;
	top: -7px;
	left: 6px;
}

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

.bootpicker.inline {
	display: block;
	margin-top: 0px;
	position: static;
	box-shadow: none;
}

.bootpicker.inline:before,.bootpicker.inline:after {
	display: none;
}

.bootpicker.pull-right:before {
	left: auto;
	right: 6px;
}

.bootpicker.pull-right:after {
	left: auto;
	right: 7px;
}

.bootpicker>ul {
	list-style-type: none;
	margin: 0;
	padding: 0px;
}

.bootpicker>ul>li.picker-visible {
	max-height: 500px;
	overflow: hidden;
	opacity: 1;
	transition: all 0.25s ease-in;
}

.bootpicker>ul>li.picker-hidden {
	width: 0px;
	max-height: 0px;
	overflow: hidden;
	opacity: 0;
}

.bootpicker table {
	width: auto;
	margin: 0px;
}

.bootpicker td,.bootpicker th {
	text-align: center;
	width: 35px;
	height: 30px;
	border-radius: 4px;
}

.bootpicker td.day:hover {
	background: #eee;
}

.bootpicker td.today,.bootpicker td.today:hover {
	background-color: #3276b1;
	color: #fff;
}

.bootpicker td.active,.bootpicker td.active:hover {
	background-color: #ffe3a0;
	color: inherit;
}

.bootpicker td.disabled,.bootpicker td.disabled:hover {
	background: 0;
	color: #999;
	cursor: not-allowed;
}

.bootpicker td span {
	cursor: pointer;
	border-radius: 4px
}

.bootpicker td span:hover {
	background: #eee
}

.bootpicker td span.active {
	background-color: #ffe3a0;
}

.bootpicker td span.old {
	color: #999;
}

.bootpicker td span.disabled,.bootpicker td span.disabled:hover {
	background: 0;
	color: #999;
	cursor: not-allowed;
}

.bootpicker .datepicker>div {
	display: none;
}

.bootpicker .datepicker thead tr:first-child th {
	cursor: pointer;
}

.bootpicker .datepicker thead tr:first-child th:hover {
	background: #eee;
}

.bootpicker .datepicker th.switch {
	width: 175px;
}

.bootpicker .datepicker th.next,.bootpicker .datepicker th.prev {
	font-size: 20px;
	width: 35px;
}

.bootpicker .datepicker td.old,.bootpicker .datepicker td.new {
	color: #999;
}

.bootpicker .datepicker td span {
	display: block;
	float: left;
	margin: 4px 8px;
	line-height: 44px;
	width: 65px;
}

.bootpicker .timepicker>div:first-child td {
	padding: 0px
}

.bootpicker .timepicker td.sep {
	width: 4px;
}

.bootpicker .timepicker td[data-action] {
	width: 45px;
}

.bootpicker .timepicker td[data-action] i {
	color: #777;
	font-size: 12px;
}

.bootpicker .timepicker td[data-action=add] {
	background: -webkit-linear-gradient(top, #ddd 0%, #ccc 100%);
	background: linear-gradient(to bottom, #ddd 0%, #ccc 100%);
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	height: 30px;
}

.bootpicker .timepicker td[data-action=show] {
	background: -webkit-linear-gradient(top, #eee 0%, #f7f7f7 50%, #eee 100%);
	background: linear-gradient(to bottom, #eee 0%, #f7f7f7 50%, #eee 100%);
	color: #555;
	font-weight: bold;
	font-size: 16px;
	border-radius: 0px;
	height: 36px;
}

.bootpicker .timepicker td[data-action=toggle] {
	background: -webkit-linear-gradient(top, #eee 0%, #f7f7f7 50%, #eee 100%);
	background: linear-gradient(to bottom, #eee 0%, #f7f7f7 50%, #eee 100%);
	color: #555;
	font-weight: bold;
	font-size: 14px;
	background: linear-gradient(to bottom, #eee 0%, #f7f7f7 50%, #eee 100%);
}

.bootpicker .timepicker td[data-action=subtract] {
	background: -webkit-linear-gradient(top, #ccc 0%, #ddd 100%);
	background: linear-gradient(to bottom, #ccc 0%, #ddd 100%);
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	height: 30px;
}

.bootpicker .timepicker td.hour:hover,.bootpicker .timepicker td.minute:hover,.bootpicker .timepicker td.second:hover {
	background: #eee;
	cursor: pointer;
}

.bootpicker .timepicker td span {
	display: block;
	font-weight: bold;
	font-size: 16px;
	line-height: 36px;
	width: 45px;
}

.bootpicker .picker-switch {
	border-radius: 4px;
	cursor: default;
	font-size: 16px;
	padding-top: 2px;
	text-align: center;
}

.bootpicker .picker-switch i {
	cursor: pointer;
	color: #777;
	top: 3px;
	margin-left: 4px;
	margin-right: 4px;
}