.calendar {
	position: relative;
	width: 310px;
	background: #5e28d2;
	border-radius: 4px;
	overflow: hidden;
	margin: 0 auto;
}

.ui-datepicker-header {
	height: 50px;
	line-height: 50px;
	color: #ffffff;
	background: #5123B6;
	margin-bottom: 10px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
	width: 20px;
	height: 20px;
	text-indent: 9999px;
	/* border: 2px solid #b0aead; */
	border-radius: 100%;
	cursor: pointer;
	overflow: hidden;
	margin-top: 12px;
}

.ui-datepicker-prev {
	float: left;
	margin-left: 12px;
}

.ui-datepicker-prev:after {
	transform: rotate(45deg);
	margin: -43px 0px 0px 8px;
}

.ui-datepicker-next {
	float: right;
	margin-right: 12px;
}

.ui-datepicker-next:after {
	transform: rotate(-135deg);
	margin: -43px 0px 0px 6px;
}

.ui-datepicker-prev:after,
.ui-datepicker-next:after {
	content: '';
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	border-left: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover,
.ui-datepicker-prev:hover:after,
.ui-datepicker-next:hover:after {
	border-color: #ffffff;
}

.ui-datepicker-title {
	text-align: center;
	text-transform: uppercase;
}

.ui-datepicker-calendar {
	width: 100%;
	text-align: center;
}

.ui-datepicker-calendar thead tr th span {
	display: block;
	width: 40px;
	color: #ffffff;
	margin-bottom: 5px;
	font-size: 13px;
}

.ui-state-default {
	display: block;
	text-decoration: none;
	color: #ededed;
	line-height: 40px;
	font-size: 12px;
}

.ui-state-default:hover {
	background: #ffffff;
	color: #5e14ff;
	border-radius: 50%;
}

.ui-state-highlight {
	color: #ffffff;
	font-weight: bold
}

.ui-state-active {
	background: #ffffff;
	color: #5e14ff;
	border-radius: 50%;
	font-weight: bold
}

.ui-datepicker-unselectable .ui-state-default {
	color: #eee;
	border: 2px solid transparent;
}