.date-picker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.date-picker.static {
  position: relative;
}
.date-picker .dp-container {
  flex: 1;
}
.date-picker .dp-header h3 {
  text-align: center;
  line-height: 69px;
  font-size: 1.2rem;
  font-weight: normal;
  margin: 0;
}
.date-picker .dp-header button {
  position: absolute;
  top: 0;
  background-color: #fff;
  color: #aaa;
  padding: 0;
  height: 69px;
  line-height: 69px;
  width: 3rem;
  border: none;
}
.date-picker .dp-header button.dp-close-button {
  left: 0;
}
.date-picker .dp-header button.dp-confirm-buttom {
  right: 0;
  font-size: 1rem;
}
.date-picker .dp-labels {
  border-top: 1px solid #ddd;
  background-color: #f2f2f2;
  padding-left: 0;
  margin: 0;
  display: flex;
}
.date-picker .dp-labels li {
  color: #949494;
  list-style: none;
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  line-height: 35px;
}
.date-picker .dp-labels li.dp-sunday,
.date-picker .dp-labels li.dp-saturday {
  color: #ff4136;
}
.date-picker .dp-calendar-item header {
  border-bottm: 1px solid #eee;
  margin-bottom: 1rem;
}
.date-picker .dp-calendar-item header h4 {
  color: #7fdbff;
  text-align: center;
  margin: 0;
  line-height: 3.25;
  font-weight: normal;
}
.date-picker .dp-calendar-item ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eee;
}
.date-picker .dp-calendar-item ul li {
  list-style: none;
  min-width: 14.285714%;
  max-width: 14.285714%;
  flex: 1 1 14.285714%;
  text-align: center;
  line-height: 3rem;
  margin-bottom: 1rem;
}
.date-picker .dp-calendar-item ul li.dp-empty-0 {
  counter-reset: date;
  flex: 0 0 0%;
  min-width: 0%;
  max-width: 100%;
}
.date-picker .dp-calendar-item ul li.dp-empty-0 ~ :nth-child(7n + 7),
.date-picker .dp-calendar-item ul li.dp-empty-0 ~ :nth-child(7n + 9) {
  color: #ff851b;
}
.date-picker .dp-calendar-item ul li.dp-empty-1 {
  counter-reset: date;
  flex: 1 1 14.285714%;
  min-width: 14.285714%;
  max-width: 100%;
}
.date-picker .dp-calendar-item ul li.dp-empty-1 ~ :nth-child(7n + 7),
.date-picker .dp-calendar-item ul li.dp-empty-1 ~ :nth-child(7n + 8) {
  color: #ff851b;
}
.date-picker .dp-calendar-item ul li.dp-empty-2 {
  counter-reset: date;
  flex: 2 2 28.571428%;
  min-width: 28.571428%;
  max-width: 100%;
}
.date-picker .dp-calendar-item ul li.dp-empty-2 ~ :nth-child(7n + 7) {
  color: #ff851b;
}
.date-picker .dp-calendar-item ul li.dp-empty-3 {
  counter-reset: date;
  flex: 3 3 42.857142%;
  min-width: 42.857142%;
  max-width: 100%;
}
.date-picker .dp-calendar-item ul li.dp-empty-3 ~ :nth-child(7n + 7),
.date-picker .dp-calendar-item ul li.dp-empty-3 ~ :nth-child(7n + 6) {
  color: #ff851b;
}
.date-picker .dp-calendar-item ul li.dp-empty-4 {
  counter-reset: date;
  flex: 4 4 57.142856%;
  min-width: 57.142856%;
  max-width: 100%;
}
.date-picker .dp-calendar-item ul li.dp-empty-4 ~ :nth-child(7n + 7),
.date-picker .dp-calendar-item ul li.dp-empty-4 ~ :nth-child(7n + 5) {
  color: #ff851b;
}
.date-picker .dp-calendar-item ul li.dp-empty-5 {
  counter-reset: date;
  flex: 5 5 71.42857000000001%;
  min-width: 71.42857000000001%;
  max-width: 100%;
}
.date-picker .dp-calendar-item ul li.dp-empty-5 ~ :nth-child(7n + 7),
.date-picker .dp-calendar-item ul li.dp-empty-5 ~ :nth-child(7n + 4) {
  color: #ff851b;
}
.date-picker .dp-calendar-item ul li.dp-empty-6 {
  counter-reset: date;
  flex: 6 6 85.714284%;
  min-width: 85.714284%;
  max-width: 100%;
}
.date-picker .dp-calendar-item ul li.dp-empty-6 ~ :nth-child(7n + 7),
.date-picker .dp-calendar-item ul li.dp-empty-6 ~ :nth-child(7n + 3) {
  color: #ff851b;
}
.date-picker .dp-calendar-item ul li:not(:first-child):before {
  content: counter(date);
  counter-increment: date;
}
.date-picker .dp-calendar-item ul li.dp-today {
  position: relative;
}
.date-picker .dp-calendar-item ul li.dp-today:after {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  line-height: 0.4rem;
  font-size: 0.4rem;
  border-radius: 50%;
  background-color: #ff4136;
  left: 50%;
  margin-left: -0.2rem;
  bottom: 0.5rem;
}
.date-picker .dp-calendar-item ul li.dp-diabled {
  color: #aaa !important;
}
.date-picker .dp-calendar-item ul li.dp-select {
  background: radial-gradient(circle at center, #7fdbff 0, #7fdbff 65%, transparent 68%, transparent 100%);
}
/*# sourceMappingURL=date-picker.css.map */