.ui-datepicker-header {
    background: #EAEAEA;
    color: #333;  
    font-weight: bold;
    line-height: 30px;
    height: 30px;
}
.ui-datepicker {
  display: block;
  text-align: center;
  
  /* font-family: "Helvetica"; */
  font-family: 'Roboto Condensed', sans-serif;

  color: #666;
  background: #FAFAFA;
}
.date-block{
  text-align: center;
  background: #286090;
  font-family: 'Roboto Condensed', sans-serif;
  color: #f5f5f5;
  font-size: 18pt;
  padding: 10px;
  border-radius: 0.2em;
  margin-right: 5px;
  width: 50%;
}
.date-dia{ font-size: 1.8rem; margin-top: 11px; }
.date-numero{ font-size: 3.5rem; font-weight: 800;}
.date-mes{ font-size: 1.5rem; font-weight: 800; }
.date-anio{ font-size: 1.5rem; }
.ui-datepicker-prev, .ui-datepicker-next {  
    display: inline-block;  
    font-family: FontAwesome;
    width: 30px;  
    height: 30px;  
    text-align: center;  
    cursor: pointer;  
    background-color:none;  
    background-repeat: no-repeat;
    position: relative;
    color: transparent !important;
}
.ui-datepicker-prev {  
    float: left;  
    background-position: center -30px;  
}  
.ui-datepicker-next {  
    float: right;  
    background-position: center 0px;  
}  
.ui-datepicker-prev:before {
  content: "\f053";
  display: block;
  color: rgba(0,0,0,.3) !important;
  
}
.ui-datepicker-next:before {
  content: "\f054";
  display: block;
  color: rgba(0,0,0,.3) !important; 
}
.ui-datepicker-year{
  font-weight: normal;
}
.ui-datepicker-calendar {
  border-collapse:collapse;
  width: 100%;
  margin-top: 10px;
  text-align: center;
  background: #FAFAFA;
  font-family: "Helvetica";
}
.ui-datepicker td a{
  text-decoration: none;
}
.ui-datepicker td a, .ui-datepicker td span{
  display: block;
  width: 100%;
  font-size: 12px;
  padding: 10px 0;
  color: #333;
  height: 34px;
  width: 34px;
}
.ui-datepicker td span{
  color: #BBB;
}
/* fecha hoy cuando inicia */
.ui-datepicker .ui-state-active {
  background: #1976d2;
  border: 1px solid #42a5f5;
  border-radius: 50%;
  border-collapse:collapse;
  color: #fff;
}
.ui-datepicker .ui-state-highlight {
  background: #FAFAFA;
  color: #000;
  border-collapse:collapse;
}
.ui-datepicker td.past {
  color:#BBB;
}
/* cursor sobre numemro de dia */
.ui-datepicker a:hover {
  border-radius: 50%;
  background: #1976d2;
  color: #FFF;
  border-collapse:collapse;
}