/* -------- date picker -------- */
.date_picker_wrap {
  position: absolute;
  left: 0;
  top: 0;
  background-color: transparent;
}

.date_picker {
  width: 638px;
  height: 526px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}
.date_picker .guide {
  margin: 34px 0 0 41px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.0;
}
.date_picker .cal_pane {
  margin: 46px 0 0 165px;
  padding-bottom: 18px;
  width: 305px;
  border: 1px solid #ccc;
}
.date_picker .year_wrap {
  margin: 11px 0 0 23px;
}
.date_picker .prev_year_btn {
  margin-top: 2px;
  width: 12px;
  height: 18px;
  float: left;
  background-image: url(../img/date_picker/prev.png);
  background-repeat: no-repeat;
  background-size: 12px 18px;
  cursor: pointer;
}
.date_picker .year {
  width: 229px;
  float: left;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.0;
  text-align: center;
}
.date_picker .next_year_btn {
  margin-top: 2px;
  width: 12px;
  height: 18px;
  float: left;
  background-image: url(../img/date_picker/next.png);
  background-repeat: no-repeat;
  background-size: 12px 18px;
  cursor: pointer;
}
.date_picker .month_wrap {
  margin: 11px 0 0 23px;
}
.date_picker .prev_month_btn {
  margin-top: 2px;
  width: 12px;
  height: 18px;
  float: left;
  background-image: url(../img/date_picker/prev.png);
  background-repeat: no-repeat;
  background-size: 12px 18px;
  cursor: pointer;
}
.date_picker .month {
  width: 229px;
  float: left;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.0;
  text-align: center;
}
.date_picker .next_month_btn {
  margin-top: 2px;
  width: 12px;
  height: 18px;
  float: left;
  background-image: url(../img/date_picker/next.png);
  background-repeat: no-repeat;
  background-size: 12px 18px;
  cursor: pointer;
}
.date_picker .dow {
  margin: 11px 0 0 13px;
}
.date_picker .dow td {
  width: 39px;
  height: 39px;
  font-size: 16px;
  line-height: 1.0;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #808080;
  border: 1px solid #fff;
  border-bottom-width: 0;
}
.date_picker .monthlyCal {
  margin-left: 13px;
}
.date_picker .monthlyCal td {
  width: 39px;
  height: 39px;
  font-size: 16px;
  line-height: 1.0;
  color: #006998;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #fff;
}
.date_picker .monthlyCal .tm {
  background-color: #e6e6e6;
  cursor: pointer;
}
.date_picker .monthlyCal .tm.sun {
  background-color: #fde2e2;
}
.date_picker .monthlyCal .tm.sat {
  background-color: #e2e9fd;
}
.date_picker .cancel_btn {
  padding-top: 3px;
  left: 489px;
  top: 477px;
  position: absolute;
  width: 120px;
  height: 17px;
  font-size: 14px;
  line-height: 1.0;
  text-align: center;
  color: #fff;
  background-color: #006998;
  cursor: pointer;
}