.date-picker-container {
  position: relative;
  width: 100%;
  height: 100%; }

.date-picker-input {
  width: 100%;
  height: 100%;
  padding: 8px 12px;
  box-sizing: border-box;
  border: 0px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s; }
  .date-picker-input::placeholder {
    font-family: Regular;
    font-weight: 400;
    font-size: 14px;
    color: #A5ACBD;
    line-height: 20px;
    text-align: left;
    font-style: normal;
    text-transform: none; }

.date-picker-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  padding: 12px;
  display: none; }

.date-picker-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 100%;
  cursor: pointer; }
  .date-picker-clear:hover::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #E5E6EB;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    z-index: -1; }

.date-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px; }

.date-picker-header button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  padding: 4px;
  border-radius: 4px; }

.date-picker-header button:hover {
  background-color: #f5f5f5;
  color: #4096ff; }

.date-picker-header-title {
  font-weight: 500;
  cursor: pointer; }

.date-picker-header-title:hover {
  color: #4096ff; }

.date-picker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
  font-size: 12px;
  color: #666; }
  .date-picker-weekdays > div {
    height: 32px;
    padding: 0;
    color: #7d7d7f;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    font-size: 15px; }

.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px; }

.date-picker-day {
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer; }

.date-picker-day:hover {
  background-color: #f5f5f5; }

.date-picker-day.today {
  color: #165dff;
  font-weight: 500; }

.date-picker-day.selected {
  background-color: #4096ff;
  color: white; }

.date-picker-day.other-month {
  color: #d9d9d9; }

.date-picker-day.disabled {
  color: #d9d9d9;
  cursor: not-allowed;
  background-color: rgba(0, 0, 0, 0.04); }

.date-picker-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: center; }

.date-picker-footer button {
  padding: 4px 8px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px; }

.date-picker-footer button.today-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 4px;
  color: #165dff;
  font-size: 16px;
  line-height: 1.5715;
  text-decoration: none;
  background-color: transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 300ms ease; }
  .date-picker-footer button.today-btn:hover {
    color: #165dff;
    background-color: #F2F3F5; }

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type="number"] {
  -moz-appearance: textfield; }

/*# sourceMappingURL=datePicker.css.map */
