/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em;
  
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px; 
}
/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em;
}
/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em;
}
.picker__year 
{
  /*
  color: #999999;
  font-size: .8em;
  font-style: italic;*/
}
/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2.5em;
  padding: .5em .25em;
  margin-left: .25em;
  margin-right: .25em;
  font-size: .6em;
}
@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    font-size: .8em;
    margin-top: -0.5em;
  }
}
.picker__select--month {
  width: 35%;
}
.picker__select--year {
  width: 22.5%;
}
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec;
}
/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: 0.90em 1.25em;
  width: 0.8em;
  height: 0.8em;
  top: -0.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em;
  }
}
.picker__nav--prev {
  left: -1em;
  padding-right: 2.2em;
  background:url(../images/icon-calendar-previous.png) center no-repeat  !important;
  background-size: auto 80% !important;
}
@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 2.2em;
  }
}
.picker__nav--next {
  right: -1em;
  padding-left: 2.2em;
  background:url(../images/icon-calendar-next.png) center no-repeat  !important;
  background-size: auto 80% !important;
}
@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 2.2em;
  }
}
.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #000000;
  width: 0;
  height: 0;
  display: none;
  margin: 0 auto;
}
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000000;
}
.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  /*background: #b1dcfb;*/
  background: #CBB262;
}
.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
  opacity: 0.3;
  -moz-opacity:0.3;
  filter: alpha(opacity=30);
  -ms-filter:alpha(opacity=30);
}
/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em;
}
@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em;
  }
}
.picker__table td {
  margin: 0;
  padding: 0;
  
  border: 1px solid #d3d3d3;
  /*
  border-bottom: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;*/
}
/**
 * The weekday labels
 */
 
 /*
      -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
 */
.picker__weekday {
  width: 14.2857142857%;
  font-size: inherit;
  padding:.3125em 0;
  color: #999999;
  font-weight: 500;
  /* Increase the spacing a tad */
  border: 1px solid #d3d3d3;
  text-align: center;
  /*
  border-bottom: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  */
}
@media (min-height: 33.875em) {
  .picker__weekday {
    padding:.5em 0;
  }
}
/**
 * The days on the calendar
 */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent;
}
.picker__day--today {
  /*color: #0089ec;*/
  /*color: #96702F;*/
  background-color: #dddddd;
  position: relative;
}
.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.66em solid #959F74;
  border-left: .66em solid transparent;
}
.picker__day--selected,
.picker__day--selected:hover {

  border-color:  #959F74;
}
.picker__day--highlighted {
  
  background:  #959F74;
  color: #ffffff;
}
.picker__day--disabled:before {
  border-top-color: #aaaaaa;
}
.picker__day--outfocus {
  color: #dddddd;
}
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000000;
  background: #B4BF8C;

}
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
 
  background: #959F74;
  color: #ffffff;
}
.picker__day--disabled,
.picker__day--disabled:hover {
  /*background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;*/
  color: #fff;
  cursor: default;
}
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb;
}
/**
 * The footer containing the "today" and "clear" buttons.
 */
.picker__footer {
  text-align: center;
}
.picker__button--today,
.picker__button--clear {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 50%;
  display: inline-block;
  vertical-align: bottom;
  
}
.picker__button--today:hover,
.picker__button--clear:hover {
  cursor: pointer;
  color: #000000;
  /*background: #b1dcfb;
  border-bottom-color: #b1dcfb;*/
  
  background: #CBB262;
  border-bottom-color: #CBB262;
}
.picker__button--today:focus,
.picker__button--clear:focus {
  /*background: #b1dcfb;*/
  background: #CBB262;
  border-color: #0089ec;
  outline: none;
}
.picker__button--today:before,
.picker__button--clear:before {
  position: relative;
  display: inline-block;
  height: 0;
}
.picker__button--today:before {
  content: " ";
  margin-right: .45em;
  top: -0.05em;
  width: 0;
  /*border-top: 0.66em solid #0059bc;*/
  border-top: 0.66em solid #96702F;
  border-left: .66em solid transparent;
}
.picker__button--clear:before {
  content: "\D7";
  margin-right: .35em;
  top: -0.1em;
  color: #ee2200;
  vertical-align: top;
  font-size: 1.1em;
}

/* ==========================================================================
   $DEFAULT-DATE-PICKER
   ========================================================================== */
.picker__label
{
    background: #fff;
    clear: both;
    margin: 0;
    padding: 12px 10px;
    border-bottom: 1px solid #BDBEC0;
    font-size: 14px;
    font-weight: bold; 
}


/* ==========================================================================
   ADDED HEADER
   ========================================================================== */

.picker__label p
{
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
}

.picker__label a.picker__cancel {
    color: #959F74;
    font-size: 16px;
    padding-left: 30px;
    text-decoration: none;
    background: url(../images/arrow_left.gif) no-repeat 10px center;
    font-weight: normal;
    text-transform: capitalize;
    float: right;
}