/* DatePicker Container */
.ui-widget {
	font-size: 1em;
}
.ui-datepicker {
	width: 218px;
	height: auto;
	-webkit-box-shadow: 0px 0px 44px -3px rgba(0,0,0,0.78);
	-moz-box-shadow: 0px 0px 44px -3px rgba(0,0,0,0.78);
	box-shadow: 0px 0px 44px -3px rgba(0,0,0,0.78);
}
.ui-datepicker a {
	text-decoration: none;
}
/* DatePicker Table */
.ui-datepicker table {
	width: 100%;
	border: none;
	margin: 0;
}
.ui-datepicker table td {
	border: none;

}
.ui-datepicker-header {
	background-color: #3c67ac;
	color: #fff;
	font-weight: 700;
	font-size: 1em;
	text-transform: uppercase;
	line-height: 2.5em;
}
.ui-datepicker-title {
	text-align: center;
}
.ui-datepicker-prev, .ui-datepicker-next {
	display: inline-block;
	position: relative;
	width: 40px;
	height: 40px;
	text-align: center;
	cursor: pointer;
	overflow: hidden;
	text-indent: -999px
}
.ui-datepicker-prev {
	float: left;
}
.ui-datepicker-next {
	float: right;
}
.ui-datepicker-prev span, .ui-datepicker-next span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.ui-datepicker-prev span {
	display: block;
	width: 0; 
	height: 0; 
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent; 
	border-right:12px solid #fff; 
}
.ui-datepicker-next span {
	display: block;
	width: 0; 
	height: 0; 
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent; 
	border-left:12px solid #fff; 
}
.ui-datepicker thead {
	background-color: #f7f7f7;
	border-bottom: 1px solid #e3e3e3;
}

.ui-datepicker th {
	text-transform: uppercase;
	padding: 5px 0;
	color: #838383;
	font-weight: 600;
	font-size: .7em;
	text-align: center;
}
.ui-datepicker tbody td {
	padding: 0;
	border-right: 1px solid #bbb;
}
.ui-datepicker tbody td:last-child {
	border-right: 0px;
}
.ui-datepicker tbody tr {
	border-bottom: 1px solid #bbb;
}
.ui-datepicker tbody tr:last-child {
	border-bottom: 0px;
}
.ui-datepicker td span, .ui-datepicker td a {
	display: inline-block;
	font-weight: 600;
	font-size: 0.8em;
	text-align: center;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #5a5c5c;
}
.ui-datepicker-calendar .ui-state-default {
	background: #fff;
}
.ui-datepicker-calendar .ui-state-hover {
	background: #f7f7f7;
}
.ui-datepicker-calendar .ui-state-active {
	background: #ebe8e8;
	position: relative;
}
.ui-datepicker-unselectable .ui-state-default {
	background: #f4f4f4;
	color: #b4b3b3;
}
.ui-datepicker-calendar td:first-child .ui-state-active {
	width: 29px;
	margin-left: 0;
}
.ui-datepicker-calendar td:last-child .ui-state-active {
	width: 29px;
	margin-right: 0;
}
.ui-datepicker-calendar tr:last-child .ui-state-active {
	height: 29px;
	margin-bottom: 0;
}