#ui-datepicker-div {
  display: none;
  background-color: #fff;
  box-shadow: 0 2px 8px #1a1b25;
  margin-top: 20px;
  border-radius: 10px;
  position: absolute;
  margin-left: -50px;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 10px;
}
.ui-datepicker-calendar thead th {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 14px;
  color: #2374bb;
  font-family: "poppinsbold";
}
.ui-datepicker-calendar tbody td {
  width: 2.5rem;
  text-align: center;
  padding-top: 5px;
}
/* .ui-datepicker-calendar tbody td a {
  display: block;
  border-radius: 0.25rem;
  line-height: 2rem;
  transition: 0.3s all;
  color: #546e7a;
  font-size: 0.875rem;
  text-decoration: none;
} */
.ui-datepicker-calendar tbody td a {
  display: block;
  transition: 0.3s all;
  color: #2374bb;
  font-size: 15px;
  text-decoration: none;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.ui-datepicker-calendar tr th {
  border-bottom: 2px solid #e16e73;
}
.ui-datepicker-calendar tbody td a:hover {
  background-color: #e16e73;
  color: #fff;
}
.ui-datepicker-days-cell-over.ui-datepicker-today a {
  background-color: #e16e73;
  color: #fff;
}

.ui-datepicker-calendar tbody td a.ui-state-active {
  background-color: #e16e73;
  color: white;
}
.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.25rem;
  transition: 0.3s all;
}
.ui-datepicker-header a.ui-corner-all:hover {
  background-color: #e16e73;
  color: #fff;
}
.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
  background: url("../images/date-picker-left-arrow.png") no-repeat;
  background-repeat: no-repeat;
  background-size: 0.5rem;
  background-position: 50%;
}
.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  background: url("../images/date-picker-right-arrow.png") no-repeat;
  background-repeat: no-repeat;
  background-size: 0.5rem;
  background-position: 50%;
}
.ui-datepicker-header a > span {
  display: none;
}
.ui-datepicker-title {
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 10px 0 5px 0;
  font-family: "muliextrabold";
}
.ui-datepicker-week-col {
  color: #78909c;
  font-weight: 400;
  font-size: 0.75rem;
}
.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
  background: #e16e73;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 2px 5px #1a1b25;
}
@media only screen and (max-width: 991px) {
  #ui-datepicker-div {
    margin-top: 10px;
    margin-left: 0;
  }
}
