#calendar-block {
	position: absolute;
	background: transparent;
	width: 100%;
	height: 100%;
	z-index: 100;
}

.select-calendar {
	position: absolute;
	display: inline-block;
	width: 295px;
	background: #fcfcfe;
	border: solid 2px #777777;
	border-radius: 6px;
	line-height: 1em;
	padding: 3px 0 1px 3px;
	box-shadow:0px 0px 10px rgba(0, 0, 0, 0.3);
	cursor: default;
	left: 41px;
	top: 120px;
	z-index: 101;
}
.select-calendar .header {
	overflow: auto;
	background: #e7ecf1;
	padding: 10px;
	margin-right: 3px;
}
.select-calendar .header .btn-month-prev {
	float: left;
	cursor: pointer;
}
.select-calendar .header .btn-month-next {
	float: right;
	cursor: pointer;
}
.select-calendar .header .current-month {
	text-align: center;
	font-weight: bold;
	line-height: 23px;
}
.select-calendar .day-base {
	display: inline-block;
	width: 36px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border: solid 2px transparent;
	border-radius: 3px;
	margin: 0 2px 2px 0;
}
.select-calendar .day-labels {
	overflow: auto;
}
.select-calendar .day-labels .day-label {
	float: left;
}
.select-calendar .day-label {
	font-weight: bold;
}
.select-calendar .cal-days .cal-day {
	cursor: pointer;
}
.select-calendar .cal-days .cal-day.today {
	border-color: orange;
}
.select-calendar .cal-days .cal-day.selected {
	background: #adcbd5;
	color: white;
	border: solid 2px #43d2f9;
}


