/**
 * 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: 0px solid #333;
  background-color:rgba(0, 0, 0, .85);
  padding: 10px;
  text-align: center;
}
.rd-container-attachment {
  position: absolute;
  z-index:99999;
}
.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;
  -webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;
  -moz-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	outline:none;
	background-color:#1bbc9b;
}
.rd-next {
  float: right;
  -webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;
  -moz-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	outline:none;
	background-color:#1bbc9b;
}
.rd-back:before {
  display: block;
  width:18px;
  height:18px;
  background-image:url(../images/arrow_left.png);
  background-position: center top;
  background-repeat:no-repeat;
  content:'';
  /*content: '\2190';*/
}

.rd-next:before {
  display: block;
  width:18px;
  height:18px;
  background-image:url(../images/arrow_right.png);
  background-position: center top;
  background-repeat:no-repeat;
  content: '';
  /*content: '\2192';*/
}
.rd-back:hover {
	background-color:#00bbcb;}
.rd-next:hover {
	background-color:#00bbcb;}

.rd-day-body {
  cursor: pointer;
  text-align: center;
  padding:1px 2px;
}
.rd-day-head{
	text-align: center;
	padding:1px 2px;}
.rd-day-selected,
.rd-time-selected,
.rd-time-option:hover {
  cursor: pointer;
  background-color:#17afbc;
  color: #fff;
  -webkit-border-radius:50%;
-moz-border-radius:50%;
border-radius:50%;
}
.rd-day-prev-month,
.rd-day-next-month {
  color: #999;
}
.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-month-label{
	color:#1bbc9b;
	/*background-color:#1bbc9b;*/}