﻿/* DatePicker Container */
.date-icon {
    /*background-image: url(/images/calendar-icon.png)!important;*/
    background-image:url('/images/icons/calendar-button-white.svg')!important;
    background-color: transparent;
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size:16px;
}
.date-icon1 {
    background: #fff url(/images/calendar-icon.png) no-repeat right 10px center;
	background-size:16px;
}
.ui-datepicker {
	width: auto;
	height: auto;
	margin: 5px auto 0;
	font: 9pt 'raleway', sans-serif;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
	background: white;
    display: none;
}
.ui-datepicker a {
	text-decoration: none;
}
/* DatePicker Table */
.ui-datepicker table {
	width: 100%;
}
.ui-datepicker-header {
	background: #d68945;
	color: #fff;
	line-height: 30px;
}
.ui-datepicker-title {
	text-align: center;
	padding: 15px;
	font-size: 18px;
}
.ui-datepicker-prev, .ui-datepicker-next {
	display: inline-block;
	width: 50px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	color: transparent!important;
}
.ui-datepicker-prev:before, .ui-datepicker-next:before {
    position:absolute;
    content:"";
    display:inline-block;
    font-family: 'LinearIcons';
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-weight: normal;
    font-stretch: normal;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 15px;
    left: 0;
}
.ui-datepicker-prev:before {
    content: "\e875";
}
.ui-datepicker-next:before {
    content: "\e876";
}
.ui-datepicker-prev {
	float: left;
	background-position: center -30px;
}
.ui-datepicker-next {
	float: right;
	background-position: center 0px;
}
.ui-datepicker thead {
	background-color: #f7f7f7;
	border-bottom: 1px solid #bbb;
    background-image: linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
}
.ui-datepicker th {
	text-transform: uppercase;
	font-size: 6pt;
	padding: 5px 0;
	color: #666666;
	text-shadow: 1px 0px 0px #fff;
	filter: dropshadow(color=#fff, offx=1, offy=0);
	text-align: center;
}
.ui-datepicker tbody td {
	padding: 0px;
	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: block;
	font-weight: bold;
	text-align: center;
	line-height: 30px;
	color: #666666;
	filter: dropshadow(color=#fff, offx=1, offy=1);
	padding: 15px 20px;
}
.ui-datepicker-calendar .ui-state-default {
	background: #fff0e6;
}
.ui-datepicker-calendar .ui-state-hover {
	background: #f7f7f7;
}
.ui-datepicker-calendar .ui-state-active {
	color: #fff;
	position: relative;
	margin: -1px;
    background:#d68945;
}
.ui-datepicker-unselectable .ui-state-default {
	background: #f5f2ef;
	color: #c1c1c1;
}
.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;
}
