.datapicker-calendar {
  position: absolute;
  padding-top: 10px;
}

.calendar {
  position: absolute;
  border: 1px solid gray;
  border-radius: 5px;
  background-color: #ffffff;
  z-index: 1000;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #CACACA;
}

.calendar-header div {
  margin: 10px;
}

.arrow {
  width: 5px;
  height: 5px;
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  cursor: pointer;
}

.up {
  transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
}

.calender-direction {
  width: 25%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-body {
  margin: 10px;
}

.calendar-week {
  display: flex;
}

.calendar-day {
  display: flex;
  width: 100%;
}


.calendar-week .day, svg {
  cursor: pointer;
}

.day, .day-week {
  margin: 3px;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  font-size: 15px;
}

.other-month {
  color: #9e9e9e;
}

input {
  font-size: 13px;
  border-radius: 4px;
  box-shadow: inset 0 2px 2px #e9e9e9;
  border: 1px solid #aeaeae;
  line-height: 16px;
  padding: 6px 10px 5px;
}

input:focus {
  outline: none;
  border-color: #aeaeae;
  box-shadow: inset 0 2px 2px #e9e9e9, 0 0 10px 0 rgb(73 107 125 / 30%);
}

.previous-month,
.next-month {
  color: #9e9e9e;
}

.selected {
  background: #00abee;
  color: #ffffff;
  border-radius: 50%;
}

.arrow {
  width: 5px;
  height: 5px;
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  cursor: pointer;
}