/* ------------------------------------------------------------------------------
*
*  # Pick-a-date - Picker base
*
*  The mobile-friendly, responsive, and lightweight jQuery date & time input picker
*
*  Version: 1.1
*  Latest update: Mar 10, 2016
*
* ---------------------------------------------------------------------------- */
form.material-form .picker {
  width: 100%;
  min-width: 250px;
  text-align: left;
  position: absolute;
  top: 100%;
  margin-top: -1px;
  z-index: 990;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
form.material-form .picker select {
    display: inline-block !important;
}
form.material-form .picker__input {
  cursor: default;
  background: transparent !important;
}
form.material-form .picker__holder {
  width: 100%;
  overflow-y: auto;
  position: absolute;
  display: none;
  background-color: #fff;
  border-top-width: 0;
  border-bottom-width: 0;
  max-width: 290px;
  max-height: 0;
  -webkit-overflow-scrolling: touch;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
form.material-form .picker--opened .picker__holder {
  max-height: 480px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  display: block;
}
/* ------------------------------------------------------------------------------
*
*  # Pick-a-date - Date picker
*
*  The mobile-friendly, responsive, and lightweight jQuery date & time input picker
*
*  Version: 1.1
*  Latest update: Mar 10, 2016
*
* ---------------------------------------------------------------------------- */
form.material-form .picker__box {
  padding: 16px;
}
form.material-form .picker__header {
  text-align: center;
  position: relative;
  font-size: 17px;
  line-height: 1;
  padding-top: 15px;
  padding-bottom: 15px;
}
form.material-form .picker__month,
form.material-form .picker__year {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
form.material-form .picker__year {
  color: #999999;
  font-size: 13px;
}
form.material-form .picker__select--month,
form.material-form .picker__select--year {
  border-color: #ddd;
  height: 32px;
  font-size: 13px;
  line-height: 1.6666667;
  margin-left: 5px;
  margin-right: 5px;
  outline: 0;
}
form.material-form .picker__select--month {
  width: 35%;
}
form.material-form .picker__select--year {
  width: 35%;
}
form.material-form .picker__nav--prev,
form.material-form .picker__nav--next {
  position: absolute;
  padding: 8px;
  top: 50%;
  margin-top: -16px;
  border-radius: 2px;
  line-height: 1;
}
form.material-form .picker__nav--prev:before,
form.material-form .picker__nav--next:before {
  font-family: 'Glyphicons Halflings';
  display: block;
  font-size: 16px;
  width: 16px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
form.material-form .picker__nav--prev:hover,
form.material-form .picker__nav--next:hover {
  cursor: pointer;
  background-color: #f5f5f5;
}
form.material-form .picker__nav--prev {
  left: 0;
}
form.material-form .picker__nav--prev:before {
  content: '\e079';
}
form.material-form .picker__nav--next {
  right: 0;
}
form.material-form .picker__nav--next:before {
  content: '\e080';
}
form.material-form .picker__nav--disabled,
form.material-form .picker__nav--disabled:hover,
form.material-form .picker__nav--disabled:before,
form.material-form .picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}
form.material-form .picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-bottom: 16px;
}
form.material-form .picker__table td {
  margin: 0;
  padding: 0;
}
form.material-form .picker__weekday {
  width: 14.285714286%;
  font-size: 12px;
  text-align: center;
  padding-bottom: 10px;
  padding-top: 16px;
  color: #999999;
  font-weight: 400;
}
form.material-form .picker__day {
  padding: 8px;
}
form.material-form .picker__day--today {
  position: relative;
  background-color: #f5f5f5;
}
form.material-form .picker__day--today:before {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 6px solid #26A69A;
  border-left: 6px solid transparent;
}
form.material-form .picker__day--outfocus {
  color: #ccc;
}
form.material-form .picker__day--infocus:hover,
form.material-form .picker__day--outfocus:hover {
  cursor: pointer;
  color: #333333;
  background-color: #f5f5f5;
}
form.material-form .picker__day--highlighted:before {
  border-top-color: #fff;
}
form.material-form .picker__day--highlighted,
form.material-form .picker__day--selected {
  border-radius: 3px;
}
form.material-form .picker__day--highlighted,
form.material-form .picker__day--highlighted:hover,
form.material-form .picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #fff;
  background-color: #26A69A;
}
form.material-form .picker__day--selected,
form.material-form .picker__day--selected:hover,
form.material-form .picker--focused .picker__day--selected {
  background-color: #26A69A;
  color: #fff;
}
form.material-form .picker__day--disabled,
form.material-form .picker__day--disabled:hover {
  background: #fafafa;
  color: #999999;
  cursor: default;
}
form.material-form .picker__day--disabled:before {
  border-top-color: #999;
}
form.material-form .picker__day--highlighted .picker__day--disabled,
form.material-form .picker__day--highlighted .picker__day--disabled:hover {
  background-color: #bbbbbb;
}
form.material-form .picker__footer {
  text-align: center;
}
form.material-form .picker__footer button {
  border: 0;
  background: #fff;
  padding: 7px 14px;
  border-radius: 3px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}
form.material-form .picker__footer button:hover,
form.material-form .picker__footer button:focus {
  outline: 0;
  background-color: #f5f5f5;
}
form.material-form .picker__footer button:before {
  height: 0;
}
form.material-form .picker__button--today:before {
  content: '';
  margin-right: 5px;
  position: relative;
  display: inline-block;
  top: -1px;
  width: 0;
  border-top: 6px solid #2196F3;
  border-left: 6px solid transparent;
}
form.material-form .picker__button--close:before {
  content: '\D7';
  display: inline-block;
  position: relative;
  margin-right: 5px;
  top: 1px;
  line-height: 1;
  font-size: 16px;
}
form.material-form .picker__button--clear:before {
  content: '';
  display: inline-block;
  position: relative;
  top: -3px;
  width: 8px;
  margin-right: 5px;
  border-top: 2px solid #F44336;
}
/* ------------------------------------------------------------------------------
*
*  # Pick-a-date - Time picker
*
*  The mobile-friendly, responsive, and lightweight jQuery date & time input picker
*
*  Version: 1.1
*  Latest update: Mar 10, 2016
*
* ---------------------------------------------------------------------------- */
form.material-form .picker--time {
  min-width: 256px;
  max-width: 320px;
}
form.material-form .picker--time .picker__box {
  padding: 0;
}
form.material-form .picker__list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  max-height: 250px;
  overflow-y: auto;
}
form.material-form .picker__list-item {
  position: relative;
  padding: 8px 16px;
}
form.material-form .picker__list-item:hover,
form.material-form .picker__list-item:focus {
  cursor: pointer;
  background-color: #f5f5f5;
  z-index: 10;
}
form.material-form .picker--time .picker__button--clear {
  display: block;
  width: 100%;
  margin: 0;
  padding: 7px 14px;
  background-color: transparent;
  outline: 0;
  border: 0;
  text-align: center;
  margin-bottom: -8px;
}
form.material-form .picker__list-item--highlighted {
  z-index: 10;
}
form.material-form .picker__list-item--highlighted,
form.material-form .picker__list-item--highlighted:hover,
form.material-form .picker--focused .picker__list-item--highlighted {
  cursor: pointer;
  color: #fff;
  background-color: #26A69A;
}
form.material-form .picker__list-item--selected,
form.material-form .picker__list-item--selected:hover,
form.material-form .picker--focused .picker__list-item--selected {
  background-color: #26A69A;
  color: #fff;
  z-index: 10;
}
form.material-form .picker__list-item--disabled,
form.material-form .picker__list-item--disabled:hover,
form.material-form .picker--focused .picker__list-item--disabled {
  background-color: #fafafa;
  color: #999999;
  cursor: not-allowed;
  z-index: auto;
}