.rd-container {
  display: none;
  position: relative;
  padding: 0.5rem;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  letter-spacing: 0.05rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.rd-container-attachment {
  position: absolute;
}
.rd-month {
  display: inline-block;
  margin-right: 25px;
}
.rd-month:last-child {
  margin-right: 0;
}
.rd-month-label {
  line-height: 3rem;
  font-size: 1.5em;
}
.rd-back,
.rd-next {
  margin: 0 0.5em;
}
.rd-back[disabled],
.rd-next[disabled] {
  cursor: default;
}
.rd-back {
  float: left;
}
.rd-next {
  float: right;
}
.rd-back:before, .rd-next:before {
  font-family: 'Icomatic','sans-serif';
  display: block;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga", "dlig";
}
.rd-back:before {
  display: block;
  content: 'back';
}
.rd-next:before {
  content: 'next';
}
.rd-days, .rd-time {
  font-size: 1.5em;
}
.rd-days {
  border-spacing: 0.2em;
  border-collapse: separate;
}
.rd-day-head {
  text-transform: uppercase;
}
.rd-day-body {
  cursor: pointer;
  text-align: center;
  padding: 0.3em 0.7em 0.3em;
  border-radius: 2px;
  letter-spacing: 0.05rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.rd-day-body {
  border: 1px solid #adb9b7;
  box-sizing: border-box;
}
.rd-day-selected,
.rd-time-selected,
.rd-time-option:hover {
  cursor: pointer;
  background-color: #E5F1FB;
  color: #288EDF;
  border-radius: 2px;  
}
.rd-day-prev-month,
.rd-day-next-month {
  color: #999;
  border: none;
}
.rd-day-disabled {
  cursor: default;
  color: #fcc;
}
.rd-time {
  display: inline-block;
  margin-top: 5px;
  min-width: 80px;
}
.rd-time-list {
  display: none;
  position: absolute;
  overflow-y: scroll;
  max-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  color: #333;
}
.rd-time-selected,
.rd-time-option {
  padding: 0.3em 0.7em 0.3em;
  letter-spacing: 0.05rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.rd-time-option {
  padding: 0.75em;
}
.rd-time-option:nth-child(4n) {
  border-bottom: 1px solid #E5F1FB;
}
/*
.rd-time-option {
  color: white;
}
.rd-time-option:hover {
  color: #E5F1FB;
}
.rd-time-list {
  counter-reset: hours;
  counter-reset: minutes;
}
.rd-time-option:nth-child(4n):before {
  content: counter(hours);
  transform: translateY(-4em) translateX(-5em) scale(8);
  position: absolute;
  letter-spacing: -0.15em;
}
.rd-time-option:nth-child(4n+1):not(:first-child) {
  counter-increment: hours; 
  counter-reset: minutes 0;
}
.rd-time-option {
  counter-increment: minutes 15;
}
.rd-time-option:nth-child(4n):before {
  content: counter(hours);
  transform: translateY(-4em) translateX(-3em) scale(8);
  position: absolute;
  letter-spacing: -0.05em;
  color: black;
}
.rd-time-option:after {
  content: counter(minutes, decimal-leading-zero);
  transform: translateX(1em) scale(2.25);
  position: absolute;
  letter-spacing: -0.05em;
  color: black;
}
*/
.rd-day-concealed {
  visibility: hidden;
}