/*---------- DATEPICKER ----------*/
.ui-datepicker {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 5px;
  border: 1px solid #efefef;
  background: white;
  max-width: 400px;
}

@media (max-width: 767px) {
  .ui-datepicker {
    width: 100%;
    max-width: 290px;
  }
}

.ui-datepicker td {
  cursor: default;
}

.ui-datepicker a {
  color: #333;
}

.ui-datepicker a:hover {
  cursor: pointer;
}

.ui-datepicker td a:hover {
  cursor: default;
}

.ui-datepicker-title {
  font-size: 16px;
}

.ui-datepicker-calendar thead th {
  color: #ccc;
  font-weight: 400;
  text-transform: uppercase;
}

.ui-datepicker td {
  background-color: #efefef;
  border: 1px solid white;
}

.ui-datepicker .ui-datepicker-other-month {
  background-color: white;
}

.ui-datepicker td a,
.ui-datepicker td span {
  text-align: center;
  padding: 5px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  text-align: center;
  display: table;
}

.ui-datepicker-prev:before,
.ui-datepicker-next:before {
  display: table-cell;
  vertical-align: middle;
  font-family: 'Font Awesome 6 Pro';
  color: #ccc;
}

.ui-datepicker-prev:before {
  content: '\f104';
}

.ui-datepicker-next:before {
  content: '\f105';
}

.ui-datepicker .event-day a:hover {
  cursor: pointer;
}

.ui-datepicker .ui-state-disabled {
  opacity: 0.5;
}

.ui-datepicker .ui-datepicker-today {
  opacity: 1;
}

.datepicker-input-icon {
  height: 32px;
  line-height: 32px;
  padding: 0 10px 0 0;
  vertical-align: middle;
  border: 1px solid #ccc;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  width: auto;
}


.ui-datepicker td a:hover {
	cursor: pointer;
}

