#datepicker_wrapper {
	clear: both;
	float: left;
	padding-top: 10px;
	width: 284px;
}

#datepicker_start_date {
	clear: both;
}

.ui-widget-content {
	border: 1px solid #179CBF;
	background: none !important;
	color: #222222;
}

.ui-widget-header {
	border: 1px solid #179CBF;
	background: #179CBF;
	color: #ffffff;
	font-weight: bold;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #179CBF;
	background: #f1f1f1;
	font-weight: bold;
	color: #179CBF;
	text-align: center;
}

.ui-datepicker {
	font-size: 15px;
	width: 284px;
}

.ui-datepicker-week-end,
.ui-datepicker-week-end a.ui-state-default {
	color: #BB6666;
}

td.datepicker_available.ui-datepicker-current-day a.ui-state-default {
	background: #33CC00;
	color: #FFFFFF;
}

td.ui-datepicker-week-end.dp-highlight a.ui-state-default {
	color: #FFFFFF;
}

#timeslots_container {
	background-color: #FFFFFF;
	border: 1px solid #179CBF;
	border-radius: 5px;
	float: left;
	margin-top: 10px;
	padding: 3px;
	width: 284px;
}

.timeslot_wrapper {
	float: left;
	margin-right: 1px;
	margin-left: 1px;
	width: 90px;
}

.timeslot {
	background-color: #fff;
	border: 1px solid #8BCCDE;
	color: #179CBF;
	cursor: pointer;
	display: block;
	font-family: "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
	font-size: 12px;
	height: 24px;
	line-height: 24px;
	position: relative;
	text-align: center;
	width: 90px;
	margin-bottom: 2px;
	font-weight: bold;

	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Chrome/Safari/Opera */
	-khtml-user-select: none;
	/* Konqueror */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
}

.timeslot:hover {
	background-color: #CCFFCC;
}

.ts_reserved,
.ts_reserved:hover {
	background-color: #DFEFFC;
	color: #179CBF;
	cursor: default;
	opacity: 0.35;
	filter: Alpha(Opacity=35);
}

.ts_disabled,
.ts_disabled:hover {
	background-color: #DFEFFC;
	color: #179CBF;
	cursor: default;
	opacity: 0.35;
	filter: Alpha(Opacity=35);
}

.ts_selected,
.ts_selected:hover {
	background-color: #33CC00;
	border: 1px solid #79B7E7;
	color: #FFFFFF;
}

.ts_selected_current,
.ts_selected_current:hover {
	background-color: #33CC00;
	border: 1px solid #79B7E7;
	color: #FFFFFF;
}

#date_list_wrapper {
	float: left;
	margin-left: 20px;
	padding-top: 10px;
	width: 200px;
}

p#date_list_title {
	color: #179CBF;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}

/* Tablet Screen Sizes */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	#date_list_wrapper {
		clear: both;
		margin: 10px 0px 10px 0px;
	}

}

/* Mobile Landscape Screen Sizes */
@media only screen and (min-width: 480px) and (max-width: 549px) {

	#date_list_wrapper {
		clear: both;
		margin: 10px 0px 10px 0px;
	}

}

/* Mobile Portrait Screen Sizes */
@media only screen and (max-width: 479px) {

	.ui-datepicker {
		width: 260px;
	}

	#timeslots_container {
		width: 260px;
	}

	.timeslot_wrapper {
		width: 82px;
	}

	.timeslot {
		font-size: 11px;
		height: 22px;
		line-height: 22px;
		width: 82px;
	}

	#date_list_wrapper {
		clear: both;
		margin: 10px 0px 10px 0px;
	}

}