/* Calendar Picker */
.ui-calendar-popup{
	position:absolute;
	top:100px;
	left:0px;
	width:100%;
	display: flex;
	justify-content: center;
}

.ui-calendar-element{
	width:210px;
}

.ui-calendar-modal{
	position:absolute;
	top:0px;
	left:0px;
	background-color:rgba(255,255,255,0.7);
}

.ui-calendar-collection{
	display:table;
	table-layout:fixed;
	border:none;
	border-collapse:separate;
	border-spacing:4px;
	margin:0 auto;
}

.ui-calendar-collection-item{
	display:table-cell;
}

.ui-calendar-wrapper{
	display: inline-block;
}

.ui-calendar-container{
	min-width:200px;
	max-width:300px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border:1px solid #e5e5e5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color:#FFF;
}

.ui-calendar-container:focus{
	border:1px solid #014f98;
}

.ui-calendar-container:focus .ui-calendar-header{
	background-color:#014f98;
	color:#FFF;
	
}.ui-calendar-container:focus .ui-calendar-input-table{
	background-color:#014f98;
	color:#FFF;
}

.ui-calendar-container:focus .ui-calendar-label{
	color:#FFF;
}

.ui-calendar-table{
	width:100%;
	table-layout:fixed;
	border-collapse:separate;
	border-spacing:2px 2px;
}

.ui-calendar-element .ui-calendar-collection{
	border-spacing:0px 0px;
}

.ui-calendar-table th{
	font-size:13px;
	color:#666;
	font-weight:normal;
	text-align:center;
	height:2.2em;
	vertical-align:middle;
}

.ui-calendar-table td{
	font-size:12px;
	color:#333;
	font-weight:normal;
	text-align:center;
	height:2.2em;
	vertical-align:middle;
	cursor:pointer;
}

.ui-calendar-table td div{
	margin:0 auto;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	width:2.1em;
	height:2.1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align:center;
	line-height:2em;
	border:1px solid #FFF;
}

.ui-calendar-table td[date-today="true"] div{
	color:#014f98;
	font-weight:bold;
}

.ui-calendar-table td[date-selected="true"] div, .ui-calendar-table tr[date-week-selected="true"] td:not([date-disabled="true"]) div{
	color:#FFF;
	font-weight:bold;
	background-color:#014f98;
	border-color:#014f98;
}

.ui-calendar-table td:hover div, .ui-calendar-table td:focus div, .ui-calendar-table td:active div{
	border-color:#333!important;
}

.ui-calendar-table td[date-disabled="true"] div{
	color:#CCC;
	border:none;
	font-size:1em;
	cursor:default;
	background-color:none;
}

.ui-calendar-header{
	width:100%;
	height:90px;
	background-color:#e5e5e5;
	color:#333;
	padding:6px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position:relative;
}

.ui-calendar-header-label{
	position:absolute;
	width:100%;
	padding:4px;
	left:0px;
	top:0px;
	font-size:1.2em;
	white-space:nowrap;
	text-overflow:ellipsis;
	overflow:hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.ui-calendar-selected{
	position:absolute;
	width:100%;
	padding:4px;
	left:0px;
	top:26px;
	font-size:0.9em;
	white-space:nowrap;
	text-overflow:ellipsis;
	overflow:hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.ui-calendar-controls{
	position:absolute;
	bottom:0px;
	left:0px;
	height:30px;
	display:table;
	table-layout:fixed;
	width:100%;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.ui-calendar-element .ui-calendar-controls{
	padding:6px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.ui-calendar-prev-month{
	display:table-cell;
	width:40px;
	height:30px;
	background-image:url(../images/calendar/previous.svg);
	background-position:10px 50%;
	background-repeat:no-repeat;
	background-size:15px 25px;
	cursor:pointer;
}

.ui-calendar-prev-month{
	background-image:none;
	-webkit-mask-image: url(../images/calendar/previous.svg);
	-webkit-mask-position:0px 50%;
	-webkit-mask-repeat:no-repeat;
	-webkit-mask-size:15px 25px;
	 mask-image: url(../images/calendar/previous.svg);
	mask-position:0px 50%;
	mask-repeat:no-repeat;
	mask-size:15px 25px;
	background-color:#333;
}

.ui-calendar-month-year{
	display:table-cell;
	width:100%;	
	height:30px;
	white-space:nowrap;
	text-overflow:ellipsis;
	overflow:hidden;
	font-size:1.2em;
	text-align:center;
	vertical-align:middle;
}

.ui-calendar-next-month{
	display:table-cell;
	width:40px;
	height:30px;
	background-image:url(../images/calendar/next.svg);
	background-position:100% 50%;
	background-repeat:no-repeat;
	background-size:15px 25px;
	cursor:pointer;
}

.ui-calendar-next-month{
	background-image:none;
	-webkit-mask-image: url(../images/calendar/next.svg);
	-webkit-mask-position:100% 50%;
	-webkit-mask-repeat:no-repeat;
	-webkit-mask-size:15px 25px;
	 mask-image: url(../images/calendar/next.svg);
	mask-position:100% 50%;
	mask-repeat:no-repeat;
	mask-size:15px 25px;
	background-color:#333;
}

.ui-calendar-container:focus .ui-calendar-next-month, .ui-calendar-container:focus .ui-calendar-prev-month,
.ui-calendar-container:focus .ui-calendar-next-month:hover, .ui-calendar-container:focus .ui-calendar-prev-month:hover{
	background-color:#FFF;	
}

.ui-calendar-next-month:hover, .ui-calendar-prev-month:hover{
	background-color:#014f98;	
}

.ui-calendar-input-table{
	display:table;
	table-layout:fixed;
	width:100%;
	padding:4px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-collapse:separate;
	border-spacing:4px 4px;
	background-color:#e5e5e5;
}

.ui-calendar-input-date{
	display:table-cell;
	width:100px;
}

.ui-calendar-input-hours, .ui-calendar-input-minutes{
	display:table-cell;
	width:50px;
}

.ui-calendar-label{
	font-size:12px;
	color:#333;
}

.ui-calendar-input{
	margin-top:5px;
	width:100%;
	border:none;
	height:30px;
	font-size:14px;
	padding:4px;
	color:#333;
	webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.ui-calendar-footer{
	margin-top:5px;
	text-align:center;
}

.ui-calendar-footer-done, .ui-calendar-footer-clear{
	display:inline-block;
	font-weight:normal;
	padding:8px;
	margin:4px;
	color:#FFF;
	border:none;
	border: 1px solid #014f98;
	font-size:14px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	border-radius:2px;
	text-align:center;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	background:#014f98;
	cursor:pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.ui-calendar-footer-done:hover, .ui-calendar-footer-clear:hover, .ui-calendar-footer-done:focus, .ui-calendar-footer-clear:focus{
	background:none;
	color:#014f98!important;
	color:var(--theme-color,#014f98)!important;
}

