/* CSS Document */

/* the div that holds the date picker calendar */
.dpDiv {
}

/* the table (within the div) that holds the date picker calendar */
.dpTable {
	text-align: center;
	color: #001142;
	background-color: #f8f8f8;
	border: 1px solid #dadada;
	border-spacing: 1px;
	border-collapse: separate;
	width: 20em;
}

/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
}

/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {
	background-color: #B54091;
}

/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR {
}
	
/* the bottom table row, that has the "This Month" and "Close" buttons */
.dpTodayButtonTR {
	text-align: center;
}

/* a table cell that holds a date number (either blank or 1-31) */
.dpTD, .dpTD_closed, .dpTD_available, .dpTD_special {
	border: 1px solid #e3e3e3;
	background-color: #ffffff;
	font-weight: normal;
	color:#444444;
	text-align: right;
}

.dpTD_available:hover, .dpTD_special:hover {
	color: black;
	border: 1px solid #B64393;
	cursor: pointer;
}

.dpTD_closed {
	background-color: #e2e2e2;
	color:#c6c7c5;
	cursor: not-allowed;
}

.dpTD_available {
	background-color: #deffd2;
}

.dpTD_special {
	background-color: lightblue;
}

/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpTD_selected {
	border: 1px solid #B64393;
}

/* the date number table cell that the mouse pointer is currently over (you can use contrasting colors to make it apparent which cell is being hovered over) */
.dpTDHover {
	color: black;
	border: 1px solid #000000;
	cursor: pointer;
}

/* the table cell that holds the name of the month and the year */
.dpTitleTD {
}

/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {
	text-align: center;
}

/* the table cell that holds the "This Month" or "Close" button at the bottom */

.dpTodayButtonTD {
	text-align: center;
}

/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */

.dpDayTD {
	text-align: center;
}

/* additional style information for the text that indicates the month and year */

.dpTitleText {
	color: #ffffff;
	text-align:center;
	font-weight: bold;
}

/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */ 
.dpDayHighlight {
}

/* the forward/backward buttons at the top */
.dpButton {
	background-color:#B54091;
	color: #ffffff;
	font-weight: bold;
	padding: 0px;
	margin: 0px;
	border: 0px;
    cursor: hand;   
}

/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	color: #B54091;
	border: 0px; 
	padding: 0px;
	margin: 0px;
    cursor: hand;   
}

@media only screen and (max-width: 767px) {
  .dpTable {
    width: 17em;
  }
}