/**
 * @bevacqua/rome - Customizable date (and time) picker. Opt-in UI, no jQuery!
 * @version v3.0.4
 * @link https://github.com/bevacqua/rome
 * @license MIT
 */

:root {
  --bordergrey: #ccc;
  --inputbkgnd: #F3F3F3;
  --mainblue: #013A81;
  --textcolor: #333;    
  --secblue: #7587AD;
  --whiteblue: #C1CBE0;    
}
.rd-container {
  display: none;
  border: 1px solid var(--bordergrey);
  background-color: white;
  padding: 14px;
  text-align: center;
color: var(--textcolor);
border-radius: 2px;     
}
.rd-container-attachment {
  position: absolute;
}
.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;
  color: var(--mainblue);
}
.rd-back:hover,
.rd-next:hover {
  background-color: transparent;
     color: inherit; 
}
.rd-back[disabled],
.rd-next[disabled] {
  cursor: default;
  color: transparent;
}
.rd-back {
  float: left;
}
.rd-next {
  float: right;
}
.rd-back:before {
  display: block;
  content: '\25C0';
   
}
.rd-next:before {
  display: block;
  content: '\25B6';
}
.rd-day-body {
  cursor: pointer;
  text-align: center;
  color: var(--textcolor);
    padding: 6px;    
}
.rd-day-selected,
.rd-time-selected,
.rd-time-option:hover {
  cursor: pointer;
  background-color: var(--mainblue);
  color: white;
}
.rd-time-option:hover, .rd-day-body:hover {
  background-color: var(--secblue);
color:white;    
}
.rd-day-disabled, .rd-day-disabled:hover {
  cursor: default;
  color: var(--bordergrey);
    background-color: transparent;    
}
.rd-day-prev-month, .rd-day-prev-month:hover,
.rd-day-next-month, .rd-day-next-month:hover {
  //color: #999;
color: transparent;
    background-color: transparent;
  cursor: default;    
}

.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: var(--inputbkgnd);
  color: var(--textcolor);
    border: 1px solid var(--bordergrey);
}
.rd-time-selected {
  padding: 5px;
}
.rd-time-option {
  padding: 5px;
}
.rd-day-concealed {
  visibility: hidden;
}
