/* ------------------- calendar ------------------- */

.month-wrap {
	border: 4px solid #CCC;
	border-radius: 5px;
}

.daycell {
	float: left;
	width: 14.2857%;
}
.dayheader {
	margin: 1px;
	background-color: #034763;
	color: #FFF;
	text-align: center;
	padding: 5px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
.month-wrap .day {
	border: 1px solid #CCC;
	height: 130px;
	overflow: hidden;
}
.month-wrap .daycell .day.blank {
	border: 1px solid #FFF;
}
.month-wrap .daycell.past .day {
	border: 1px solid #EEE;
	color: #CCC;
}
.month-wrap .daycell.today .day {
	border: 1px solid #1ccdff;
}
.day-number {
	font-size: 1.3rem;
}
.month-wrap .dayitem {
	padding: 0 4px;
	font-size: 12px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.month-wrap .dayitem.start {
	margin-left: 5px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.month-wrap .dayitem.start {
	margin-right: 5px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.calendar-keys {
	list-style: none;
}
.calendar-keys li {
	display: inline-block;
	margin-left: 10px;
	font-size: 12px;
}
.calendar-keys li span {
	display: inline-block;
	padding: 0 10px;
	border: 1px solid #000;
}
#price-calendar-wrap .daycell {
	cursor: pointer;
	cursor: hand;
}