.order-calendar {
  width: 415px;
  position: relative;
}
.order-calendar__date-picker {
  min-width: 100%;
}
.order-date-picker {
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  width: 100%;
}
.order-calendar__calendar {
  background-color: white;
  padding: 20px;
  border-radius: 30px;
  position: relative;
  z-index: 100;
}
.select-date-modal .order-calendar__calendar {
  padding: 0;
  border-radius: unset;
  background-color: transparent;
  border: none;
}
.order-calendar__overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.order-calendar__current_set {
  color: #2e2e2e;
}

.ui-datepicker {
  min-width: 100%;
}
.ui-datepicker-header {
  display: flex;
  justify-content: space-between;
  height: 40px;
  align-items: center;
  background: unset;
  border: none;
  color: var(--Black, #2e2e2e);
  font-family: Involve;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  padding-right: 10px;
  padding-left: 10px;
  width: calc(100% - 40px);
}
.ui-datepicker-header .ui-icon {
  color: var(--Black, #2e2e2e);
  font-family: Involve;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  cursor: pointer;
}
.ui-datepicker-next {
  position: relative;
  order: 1;
}
.ui-datepicker-title {
  position: relative;
  order: 0;
}
.ui-datepicker-calendar {
  width: calc(100% - 40px);
}
.ui-datepicker-calendar th {
  color: var(--Black, #2e2e2e);
  font-family: Involve;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}
.ui-datepicker-calendar tr {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
  max-width: 100%;
}
.ui-datepicker-calendar thead tr {
  justify-content: space-between;
  padding: 0 10px;
}

.ui-datepicker-calendar td {
  min-width: 35px;
}

.ui-state-default,
.ui-state-active {
  font-family: Involve;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 26px;
  flex-shrink: 0;
  border-radius: 5px;
  transition: 0.3s;
  border-width: 2px;
  border-style: solid;
}

.ui-state-default {
  color: var(--Grey, #626262);
  border-color: transparent;
}
.ui-datepicker-other-month span {
  color: var(--Light-grey, #cac3c3);
  cursor: pointer;
}
.ui-state-default:hover {
  border-color: var(--Pink, #e5097f);
}

.ui-state-active {
  border-color: transparent;
  color: white;
  background: var(
    --Pink,
    linear-gradient(0deg, #f3669a 0%, #f3669a 100%),
    linear-gradient(0deg, #cd2b67 0%, #cd2b67 100%),
    #e5097f
  ) !important;
}

@media (max-width: 759px) {
  .order-calendar {
    width: calc(100vw - 40px);
  }
  .order-date-picker {
    width: 100%;
  }
  .ui-datepicker-calendar tr {
    gap: 5px;
  }
  .ui-datepicker-header,
  .ui-datepicker-calendar th,
  .ui-state-default,
  .ui-state-active {
    font-size: 14px;
  }
  .ui-datepicker-header {
    padding: 0 20px;
  }
}
