/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/**
 * The picker input element.
 */
.picker__input {
  cursor: default;
}
/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0089ec;
}
/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  width: 100%;
}
/**
 * The holder is the base of the picker.
 */
.picker__holder {
  position: absolute;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-top-width: 0;
  border-bottom-width: 0;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 176px;
  max-width: 466px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(-1em) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  -webkit-transition: all 0.15s ease-out, max-height 0 0.15s, border-width 0 0.15s;
  -moz-transition: all 0.15s ease-out, max-height 0 0.15s, border-width 0 0.15s;
  transition: all 0.15s ease-out, max-height 0 0.15s, border-width 0 0.15s;
}
/**
 * The frame and wrap work together to ensure that
 * clicks within the picker don’t reach the holder.
 */
.picker__frame {
  padding: 1px;
}
.picker__wrap {
  margin: -1px;
}
/**
 * When the picker opens...
 */
.picker--opened .picker__holder{
	text-align: center;
	max-height: 25em;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	border-top-width: 1px;
	border-bottom-width: 1px;
	-webkit-transform: translateY(0) perspective(600px) rotateX(0);
	-moz-transform: translateY(0) perspective(600px) rotateX(0);
	transform: translateY(0) perspective(600px) rotateX(0);
	-webkit-transition: all 0.15s ease-out, max-height 0, border-width 0;
	-moz-transition: all 0.15s ease-out, max-height 0, border-width 0;
	transition: all 0.15s ease-out, max-height 0, border-width 0;
	-webkit-box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
	box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
}
.picker__header{
	text-transform: uppercase;
	font-weight: bold;
}
.picker__nav--prev{
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 10px solid #696969;
	width: 10px;
	position: absolute;
	top: 0;
	left: 0;
	margin: 10px;
}
.picker__nav--next{
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #696969;
	width: 10px;
	position: absolute;
	top: 0;
	right: 0;
	margin: 10px;
}
.picker__nav--prev.picker__nav--disabled{
	border-right: 10px solid #ccc;
}
.picker__nav--next.picker__nav--disabled{
	border-left: 10px solid #ccc;
}
.picker__footer{
	display: none;
}
.picker__table{
	width: 100%;
}
.picker__table tr td{
	width: 14.27%;
}
.picker__day--disabled{
	color: #ccc;
}
.picker__day--selected{
	background: #444;
	color: #fff;
}
.picker__day:hover{
	background: #444;
	color: #fff;
}