/* DatePicker Container */
.ui-datepicker {
	width:100%;
	height: auto;
	float:left;
	/*margin: 5px auto 0;*/
	font: 12pt Arial, sans-serif;
}
.ui-datepicker a {
	text-decoration: none;
	color:#39b54a;
}
/* DatePicker Table */
.ui-datepicker table {
	width: 100%;
    border-collapse:separate;
}
.ui-datepicker tbody {


}


.ui-datepicker-header {
	background: #f2f2f2;
	color: #39b54a;
	border:1px solid #39b54a;
	border-radius:8px;
	font-weight: bold;
	line-height: 40px;
}
.ui-datepicker-title {
	text-align: center;
	font-size:24px;
}
.ui-datepicker-prev, .ui-datepicker-next {
	display: inline-block;
	width: 10%;
	min-width:70px;
	height: 62px;
	margin-top:10px;
	text-align: center;
	cursor: pointer;
	line-height: 600%;
	overflow: hidden;
}
.ui-datepicker-prev {
	float: left;
	position:relative;
	top:-36px;
	left:10px;
}
.ui-datepicker-prev::before {
	content: '<';
	float:left;
}
.ui-datepicker-next {
	float: right;
	position:relative;
	top:-36px;
	right:10px;
}
.ui-datepicker-next::after {
	content: '>';
	float:right;
}
/*.ui-datepicker thead {
	background-color: #f7f7f7;
	background-image: -moz-linear-gradient(top,  #f7f7f7 0%, #f1f1f1 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#f1f1f1));
	background-image: -webkit-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
	background-image: -o-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
	background-image: -ms-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
	background-image: linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f1f1f1',GradientType=0 );
	border-bottom: 1px solid #bbb;
}*/
.ui-datepicker th {
	text-transform: uppercase;
	font-size: 16px;
	padding: 5px 0;
	color: #666666;
	text-shadow: 1px 0px 0px #fff;
	filter: dropshadow(color=#fff, offx=1, offy=0);
}
.ui-datepicker tbody td {
	padding: 0;
	width:14.2%;
}
.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;
	text-align: center;
	width: 90%;
	height: 80px;
	line-height: 80px;
	color: #666666;
	font-size:20px;
	border:1px solid #ddd;
	border-radius:8px;
	margin:5px;
}
.ui-datepicker-calendar .ui-state-default {
	background: #fff;
	-webkit-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, .5);
	-moz-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, .5);
	box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, .5);
}
.ui-datepicker-calendar .ui-state-hover {
	background: #dbf2de;
}
.ui-datepicker-calendar .ui-state-active {
	background: #fff;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, .1);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, .1);
	box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, .1);
	color: #39b54a;
	font-size:20px;
	filter: dropshadow(color=#4d7a85, offx=0, offy=1);
	border: 2px solid #39b54a;
	position: relative;
	font-weight:bold;
}
.ui-datepicker-calendar .ui-state-active::after {
	font-family: 'Material Icons';
	background:#39b54a;
    border-radius: 100%;
    height: 18px;
    width:18px;
    font-size: 10px;
    line-height: 19px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
	color:#fff;
	position:absolute; 
	bottom:5px; 
	right:5px; 
	content:"\E876";}
	
.ui-datepicker-unselectable .ui-state-default {
	background: #f4f4f4;
	color: #b4b3b3;
}
.ui-datepicker-calendar td:first-child .ui-state-active {
	margin-left: -1px;
}
.ui-datepicker-calendar td:last-child .ui-state-active {
	margin-right: -1px;
}
.ui-datepicker-calendar tr:last-child .ui-state-active {
	
	/*margin-bottom: -1px;*/
}