/* DATEPICKER */

.myDatepicker {
	width: 100%;
	margin-top: 30px;
}

#cal {
	width: 100%;
	font: 13px/1.5 "Helvetica Neue", Helvatica, Arial, san-serif;
	display: table;
}

#cal .header {
	cursor: default;
	background: #036EB8;
	height: 34px;
	position: relative;
	color: #fff;
	font-weight: bold;
}

#cal .header span {
	display: inline-block;
	line-height: 34px;
}

#cal .header .hook {
	width: 9px;
	height: 28px;
	position: absolute;
	bottom: 60%;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	background: #ececec;
	background: -moz-linear-gradient(right top, #fff, #827e7d);
	background: -webkit-gradient(linear, right top, right bottom, from(#fff), to(#827e7d));
	box-shadow: 0px -1px 2px rgba(0, 0, 0, 0.65 );
	-moz-box-shadow: 0px -1px 2px rgba(0, 0, 0, 0.65 );
	-webkit-box-shadow: 0px -1px 2px rgba(0, 0, 0, 0.65 );
	display: none;
}
.right.hook {
	right: 15%;
}
.left.hook {
	left: 15%;
}

#cal .header .button {
	width: 36px;
	text-align: center;
	position: absolute;
}
#cal .header .left.button {
	left: 0;
	border-right: 1px solid #99ccff;
}
#cal .header .right.button {
	right: 0;
	top: 0;
	border-left: 1px solid #99ccff;
}
#cal .header .button:hover {
	background: -moz-linear-gradient(top, #d94215, #bb330f);
	background: -webkit-gradient(linear, left top, left bottom, from(#d94215), to(#bb330f));
}

#cal .header .month-year {
	letter-spacing: 1px;
	width: 100%;
	text-align: center;
}

#cal table {
	width: 100%;
	background: #fff;
	border-collapse: collapse;
}
#cal td {
	color: #ddd;
	width: 14.28%;
	height: 66px;
	text-align: left;
	border: 1px solid #eee;
	cursor: default;
	vertical-align: top;
	position: relative;
	padding-left: 5px;
}
#cal #days td {
	width: 14.28%;
	height: 26px;
	line-height: 26px;
	font-size: 90%;
	color: #9e9e9e;
	text-align: center;
	padding-left: 0;
}  
#cal #days td:not(:last-child) {
	border-right: 1px solid #fff;
}

#cal #cal-frame td.today {

}

#cal #cal-frame td.active {
	color: #2b2b2b;
	position: relative;
}

#cal #cal-frame td:not(.nil):hover {
	background: #ededed;
}

#cal #cal-frame td.offline, #cal #cal-frame td.offline:hover {
	color: #EEE;
	background: #CCC;
	position: relative;
}

#cal #cal-frame td span {
	font-size: 80%;
	position: relative;
}
#cal #cal-frame td span:first-child {
	bottom: 5px;
}
#cal #cal-frame td span:last-child {
	top: 5px;
}

#cal #cal-frame table.curr {
	float: left;
}
#cal #cal-frame table.temp {
	position: absolute;
}

#cal #cal-footer {
	display: block;
	width: 100%;
	background: #FFF;
	font-size: 13px;
	line-height: 13px;
	padding: 15px 10px;
	border: 1px solid #e6e6e6;
	border-top: none;
}

.price {
	text-align: center;
	font-size: 14px;
	color: #036EB8;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	font-weight: normal;
	line-height: 26px;
}

.price2 {
	color: #EEE;
}

.glyphicon-wrapper {
	position: absolute;
	bottom: 2px;
	right: 5px;
	text-align: right;
	display: inline;
	height: 15px;
}

.glyphicon-star {
	color: #ff9900;
	padding-left: 3px;
	font-size: 12px;
	display: inline;
}

.glyphicon-fire {
	color: #ff3333;
	padding-left: 3px;
	font-size: 12px;
	display: inline;
}

.glyphicon-time {
	color: #3399ff;
	font-size: 12px;
	display: inline;
}

.glyphicon-refresh {
	color: #16832E;
	font-size: 12px;
	display: inline;
}

.glyphicon-stop {
	color: #CCC;
	font-size: 16px;
	display: inline;
}

.fullbooking-wrapper {
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: right;
	display: inline;
}

.fullbooking-wrapper img {
	width: 18px;
}

@media (max-width: 499px) {
	.myDatepicker {
		margin-left: -10px;
		width: 105%;
	}
	#cal td {
		height: 55px;
	}
	.fullbooking-wrapper img {
		width: 13px;
	}
}