﻿/**
 * 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 {
  display: none;
  border: 1px solid #333;
  background-color: #fff;
  text-align: center;
  background:#374f6c;
  padding:0 10px 10px 10px;
  z-index:2000;
}
.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;
  height:25px;
  width:25px;
  text-align:center;
  line-height:23px;
  color:#fff;
  font-size:20px;
  border:1px solid #fff;
  position:relative;
  top:6px;
}
.rd-back:hover,
.rd-next:hover{
    border-color:#19b5fe;
    color:#19b5fe;
}
.rd-back[disabled],
.rd-next[disabled] {
  cursor: default;
}
.rd-back {
  float: left;
}
.rd-next {
  float: right;
}
.rd-back:before {
  display: block;
  content: '';
  font-family:FontAwesome;
}
.rd-next:before {
  display: block;
  content: '';
  font-family:FontAwesome;
}
.rd-day-body {
  cursor: pointer;
  text-align: center;
  padding:4px;
  color:#fff;
}
.rd-day-selected,
.rd-time-selected,
.rd-time-option:hover {
  cursor: pointer;
  color: #19b5fe;
  border:1px solid #19b5fe;
}
.rd-month-label{
    padding:10px;
    background:#2d425c;
    margin:0 -10px;
    color:#fff;
    font-weight:bold;
    font-size:12px;
}
.rd-day-prev-month,
.rd-day-next-month {
  color: #536a86;
}
.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-day-head{
    padding:10px 4px;
    text-align:center;
    color:#19b5fe;
    vertical-align:middle;
    font-size:11px;
    font-weight:bold;
}