/* WHATSOCK, 2018 */
/* Specific styles for ARIA Calendar */

/* Style the search field */
.calendar-container{
	margin-bottom:5px;
	position: relative;
}
.calendar-container input[type=text] {
	padding: .75rem;
	font-size: 1rem;
	line-height: 1.25;
	color: #464a4c;
	background-color: #fff;
	background-image: none;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.15);
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
	border-top-right-radius: 0;
  border-bottom-right-radius: 0;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  float: left;
  width: 80%;
	height: 45px;
}

table.calendar tr{
	background: #2E3135;
}
/* Style the submit button */
.calendar-container a {
  float: left;
  width: 20%;
  padding: .75rem .75rem 0;
	min-height: 45px;
  background: rgba(0,0,0,.15);
  color: #222;
	border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border: none; /* Prevent double borders */
  cursor: pointer;
	text-align:center
}

.calendar-container a:hover {
  background: #777;
	color:#eee
}

#datepicker-demo {
	background: #E0E0E0;
	padding: 1rem;
	margin: 1rem 0 2rem;
}

#datepicker-demo em {
	display: block;
	font-size: 90%;
}

#calendar-date,
#party {
	width: 90%;
	max-width: 25em;
	vertical-align: 20px;
}

a.accCalendar {
	display: inline-block;
	background: transparent;
}

div.calendar {
	text-align: center;
	color: #FFF;
	background: #2E3135;
	padding: 0.5rem;
	border-radius: 0.3rem;
	-webkit-box-shadow: 0 10px 6px -6px #777;
	-moz-box-shadow: 0 10px 6px -6px #777;
	box-shadow: 0 10px 6px -6px #777;
}

table.calendar {
	border-collapse: separate;
	border-spacing: 1px;
    border: none;
    background: #2E3135;
    margin-bottom: 0.25rem;
}

table.calendar td,
table.calendar th {
	padding: 0.3em 0.5em;
	border-radius: 0.15rem;
}
.yearSelector td{
	color:white;
	text-align: center;
}
.monthSelector td{
	text-align: center;
}
.week{
	color:#525d76 !important;
}
td.empty {
	background: rgba(255, 255, 255, .07);
}

th.week {}

td.nav,
td.day {
	cursor: pointer;
}

td.day {
	text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
	color: #000;
	background: #63B7C2;
}

td.dayToday {
	color: #000;
	background: #db7093;
}

td.dayInPrevMonth,
td.dayInNextMonth {
	color: #000;
	background: #e6e6e6;
}

td.day:hover {
	background: #E2A037;
}

td[aria-current="date"] {
	background: #E2A037;
}

div.calendar *:focus,
div.commentAdd *:focus {
	outline: blue 2px inset;
}

td.month {
	font-weight: 600;
	color: #63B7C2;
	text-shadow: 0 1px 0 #000;
}

td.comment {
	position: relative;
}
td.comment span::after {
	display: block;
	position: absolute;
	width: 7px;
	height: 7px;
	top: 0.2rem;
	right: 0.2rem;
	content: "";
	background: #49182E;
	border-radius: 7px;
}

td.comment.selected {
	background: #E2A037;
}


td.disabled,
td.disabled:hover {
	color: #CCC;
	background: #bdbdbd;
	cursor: auto;
}

td.disabled.selected {
	background: #C2C2C2;
}

div.commentTooltip {
	width: 271px;
	padding: 0.5rem;
	color: #FFF;
	background: #3D4043;
	font-size: 0.8em;
	font-weight: bold;
	max-height: 50px;
	overflow-x: hidden;
	overflow-y: auto;
	word-wrap: break-word;
	text-align: left;
}

div.commentAdd {
	background: #2E3135;
	border-radius: 0.3rem;
}

div.commentAdd button {
	font-size: 100%;
	text-transform: uppercase;
	color: #FFF;
	background: #2E3135;
	padding: 0.5rem;
	margin-top: -5px;
	border: none;
	border-bottom-left-radius: 0.3rem;
	border-bottom-right-radius: 0.3rem;
	-webkit-box-shadow: 0 10px 6px -6px #777;
	-moz-box-shadow: 0 10px 6px -6px #777;
	box-shadow: 0 10px 6px -6px #777;
}

div.commentAdd textarea {
	width: 270px;
	height: 2em;
	overflow: auto;
	word-wrap: break-word;
	text-align: left;
	padding: 0.2em;
	margin: 0.5rem 0.5rem 0;
}


div.monthMessage {
	border: 1px solid #000;
	margin: 20px 10px 10px 10px;
	padding: 10px;
}
