/* Calendar UI */
#ui-datepicker-div {
	width: 220px;
	border: none;
	border-radius: 0;
	background: #fff;
	padding: 4px;
	height: auto;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 5 !important;
}
/* header */
#ui-datepicker-div .ui-datepicker-header {
	border: none;
	border-radius: 0;
	width: 100%;
    padding: 0;
    height: 30px;
    position: relative;
    background: #C5C6C6;
    border: 1px solid #D9DADA;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
#ui-datepicker-div .ui-datepicker-header span, 
#ui-datepicker-div .ui-datepicker-title {
	font-family: pfdintextcondpro-regular, sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: #242424;
	line-height: 30px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* PREV */
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
    position: absolute;
    height: 20px;
    width: 20px;
    display: block;
    background: none;
    left: 4px;
    top: 4px;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:hover {
    background: #55A7B3;
    border: 1px solid #fff;
    left: 4px;
    top: 4px;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span {
    display: none;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:before,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:after {
    width: 6px;
    height: 1px;
    border-radius: 1px;
    background: #fff;
    content: "";
    display: block;
    position: absolute;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:hover:before,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:hover:after {
    background: #fff;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:before {
    left: 6px;
    top: 11px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:after {
    left: 6px;
    top: 7px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* NEXT */
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
    position: absolute;
    height: 20px;
    width: 20px;
    display: block;
    background: none;
    right: 4px;
    top: 4px;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:hover {
    background: #55A7B3;
    border: 1px solid #fff;
    right: 4px;
    top: 4px;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span {
    display: none;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:before,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:after {
    width: 6px;
    height: 1px;
    border-radius: 1px;
    background: #fff;
    content: "";
    display: block;
    position: absolute;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:hover:before,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:hover:after {
    background: #fff;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:before {
    left: 7px;
    top: 7px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:after {
    left: 7px;
    top: 11px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* Calendar Block */
#ui-datepicker-div .ui-datepicker-calendar {
	width: 100%;
    margin: 0;
}

.ui-datepicker th {
    height: 24px;
    padding: 0;
    width: 30px;
    background: #F6F6F6;
    border: none;
    border-right: 1px solid #D9DADA;
    text-align: center;
}
.ui-datepicker th:first-child {
    border-left: 1px solid #D9DADA;
}
#ui-datepicker-div .ui-datepicker-calendar thead th span {
	font-family: pfdintextcondpro-regular, sans-serif;
	font-size: 12px;
    color: #B1B2B3;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-transform: lowercase;
}
#ui-datepicker-div .ui-datepicker-calendar thead th.ui-datepicker-week-end span {
    color: #B1B2B3;
}

/* CalendarBody */
#ui-datepicker-div .ui-datepicker-calendar tbody tr:last-child td {
    border-bottom: 1px solid #D9DADA;
}
#ui-datepicker-div .ui-datepicker-calendar tbody td {
    border: none;
    border-right: 1px solid #D9DADA;
    background: #F6F6F6;
    width: 30px;
    height: 24px;
    text-align: center;
	padding: 0;
}
#ui-datepicker-div .ui-datepicker-calendar tbody td:first-child {
    border-left: 1px solid #D9DADA;   
}

#ui-datepicker-div .ui-datepicker-calendar tbody .ui-state-default {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: none;
    padding: 0;
	font-family: pfdintextcondpro-regular, sans-serif;
    font-size: 16px;
	font-weight: normal;
    line-height: 20px;
    text-align: center;
    color: #242424;
    display: block;
    margin: auto;
}
#ui-datepicker-div .ui-datepicker-calendar tbody .ui-state-default.ui-state-active {
    background: #55a7b3;
}

#ui-datepicker-div .ui-datepicker-calendar tbody .ui-state-highlight {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: none;
    background: #B1B2B3;
    color: #000;
    display: block;
    margin: auto;
    line-height: 20px;
}

#ui-datepicker-div .ui-datepicker-calendar tbody a:focus{
    outline: none;
}

#ui-datepicker-div .ui-datepicker-calendar tbody .ui-state-hover {
	background: #55a7b3;
	color: #242424;
	width: 20px;
    height: 20px;
    border-radius: 20px;
	text-align: center;
	font-weight: normal;
	line-height: 20px;
	margin: auto;
}

#ui-datepicker-div .ui-datepicker-calendar tbody .ui-state-disabled span {
	background: #F6F6F6;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: 1;
    background: #F6F6F6;
    color: #B1B2B3;
    border-right: 1px solid #D9DADA !important;
}
.ui-state-disabled span,
.ui-widget-content .ui-state-disabled  span,
.ui-widget-header .ui-state-disabled  span {
    color: #B1B2B3 !important;
}

.ui-datepicker-multi-2 .ui-datepicker-group.ui-datepicker-group-first .ui-datepicker-header {
    border-right: 1px solid #2e2e2e !important;
    box-sizing: border-box;
}
.ui-datepicker-multi-2 .ui-datepicker-group.ui-datepicker-group-last .ui-datepicker-header {
    border-left: 1px solid #2e2e2e !important;
    box-sizing: border-box;
}
/* End Calendar UI */
