/**
 * rome - Customizable date (and time) picker. Opt-in UI, no jQuery!
 * @version v2.1.22
 * @link https://github.com/bevacqua/rome
 * @license MIT
 */
.rd-container {
  background-color: #fff;
  padding: 1cqmin;
  text-align: center;
  border: 0.5px solid #dedede;
  border-radius: 10px;
}
.rd-container-attachment {
  position: absolute;
}
.rd-month {
  display: inline-block;
  margin-right: 25px;
  position: relative;
}
.rd-month-label {
  width: 100%;
  height: 30px;
  line-height: 30px;
}
.rd-month:last-child {
  margin-right: 0;
}
.rd-back,
.rd-next {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 10px;
}
.rd-back[disabled],
.rd-next[disabled] {
  cursor: default;
}
.rd-back {
  left: 10px;
}
.rd-next {
  right: 10px;
}
.rd-back:before {
  display: block;
  content: "";
  width: 7px;
  height: 9px;
  background: url(../../img/health_note_img/health_note_sprites.png) no-repeat;
  background-position: -337px -233px;
}
.rd-next:before {
  display: block;
  content: "";
  width: 7px;
  height: 9px;
  background: url(../../img/health_note_img/health_note_sprites.png) no-repeat;
  background-position: -337px -193px;
}
.rd-day-body {
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  /* new */
  line-height: 0;
  width: 50px !important;
  height: 50px !important;
}
.rd-day-selected,
.rd-time-selected,
.rd-time-option:hover {
  cursor: pointer;
  background-color: #96c0ff;
  color: #fff;
  /* new */
  border-radius: 50%;
}
.rd-day-prev-month,
.rd-day-next-month {
  color: #ccc;
}
.rd-day-disabled {
  cursor: default;
  color: #fcc;
}
.rd-time {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  min-width: 80px;
}
.rd-time-list {
  display: none;
  position: absolute;
  overflow-y: scroll;
  max-height: 160px;
  left: 0;
  right: 0;
  background-color: #fff;
  color: #333;
}
.rd-time-selected {
  padding: 5px;
}
.rd-time-option {
  padding: 5px;
}
.rd-day-concealed {
  visibility: hidden;
}

.rd-days {
  margin-top: 20px;
}
