
.rd-container {
  display: none;
  /*border: 1px solid #333;*/
  background-color: #fff;
  padding: 10px;
  padding-top: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 15px 30px 0 rgba(0,0,0,.2);

}
.rd-container-attachment {
  position: absolute;
  z-index: 99;
}
.rd-month {
  display: inline-block;
  margin-right: 25px;
}
.rd-month:last-child {
  margin-right: 0;
}
.rd-back,
.rd-next {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
}
.rd-back[disabled],
.rd-next[disabled] {
  cursor: default;
}
.rd-back {
  float: left;
  margin-left: 10px;
}
.rd-next {
  float: right;
  margin-right: 10px;
}
.rd-back:before {
  display: block;
  content: '\2190';
  background: var(--primary-bg-color);
    color: var(--secondary-font-color);
    border-radius: 50%;
   
    padding-top: 2px;
    width: 30px;
    height: 30px;
    text-align: center;
    
}
.rd-next:before {
  display: block;
  content: '\2192';
  background: var(--primary-bg-color);
  color: var(--secondary-font-color);
    border-radius: 50%;
 
    padding-top: 2px;
    width: 30px;
    height: 30px;
    text-align: center;
    
}
.rd-day-body {
  cursor: pointer;
  text-align: center;
  /* new */
  width: 50px;
  height: 50px;
  text-align: center;
}

.rd-day-selected:after { color: var(--secondary-font-color);}
.rd-day-selected,
.rd-time-selected,
.rd-time-option:hover {
  cursor: pointer;
  background-color: var(--secondary-bg-color);
  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;
}
.rd-month-label { font-weight: var(--font-bold-2);}