/* ------------ DateTime picker [START] ------------ */
.picker__table {
    text-align: center;
    table-layout: fixed;
    font-size: inherit;
    width: 100%;
    margin-top: .75em;
    margin-bottom: .5em;
    border-spacing: 0;
}
@media (min-height: 33.875em)
{
    .picker__table {
        margin-bottom: .75em;
    }
}
.picker__table td {
    margin: 0 !important;
    padding: 0 !important;
}

/**
 * The days on the calendar
 */
 .picker__day {
    padding: .3125em 0;
    font-weight: 200;
    border: 1px solid transparent;
  }
  .picker__day--today {
    position: relative;
  }
  .picker__day--today:before {
    content: " ";
    position: absolute;
    top: 2px;
    right: 2px;
    width: 0;
    height: 0;
    border-top: 0.5em solid #0059bc;
    border-left: .5em solid transparent;
  }
  .picker__day--disabled:before {
    border-top-color: #aaa;
  }
  .picker__day--outfocus {
    color: #ddd;
  }
  .picker__day--infocus:hover,
  .picker__day--outfocus:hover {
    cursor: pointer;
    color: #000;
    background: #b1dcfb;
  }
/* 
  .picker__day--highlighted {
    border-color: #0089ec;
  }
*/
/*  .picker__day--highlighted:hover,*/
  .picker--focused .picker__day--highlighted {
    cursor: pointer;
    color: #000;
/*    background: #b1dcfb;*/
  }
  .picker__day--selected,
  .picker__day--selected:hover,
  .picker--focused .picker__day--selected {
/*    background: #0089ec;*/
    color: #fff;
  }
  .picker__day--disabled,
  .picker__day--disabled:hover,
  .picker--focused .picker__day--disabled {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: #ddd!important;
    cursor: default;
  }
  .picker__day--highlighted.picker__day--disabled,
  .picker__day--highlighted.picker__day--disabled:hover {
    background: #bbb;
  }

/* ------------ DateTime picker [END] ------------ */
