/*
	Stylesheet for Tigra Calendar v5.0
	Product is Public Domain (Free for any kind of applicaiton, customization and derivative works are allowed) 
	URL: http://www.softcomplex.com/products/tigra_calendar/

	- all image paths are relative to path of stylesheet
	- the styles below can be moved into the document or in existing stylesheet

*/

/* input box in default state */ 
.tcalInput {
	background: #fff;
	padding-right: 20px;
	cursor: pointer;
}

/* additional properties for input boxe in activated state, above still applies unless in conflict */
.tcalActive {
	background: #fff;
}
/* container of calendar's pop-up */
#tcal {
	position: absolute;
	visibility: hidden;
	z-index: 100;
	width: 300px;
	background-color: #fff;
	margin-top: 2px;
	padding: 10px;
	border: 0px solid silver;
	color: #858585;
	border-radius:6px;
	box-shadow: 2px 2px 30px 0px rgba(0,0,0,0.4);

}

/* table containing navigation and current month */
#tcalControls {
	border-collapse: collapse;
	border: 0;
	width: 100%;
}
#tcalControls td {
	border-collapse: collapse;
	border: 0;
	padding: 10;
	width: 20px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
}
#tcalControls th {
	border-collapse: collapse;
	border: 0;
	padding: 10px;
	line-height: 25px;
	color: #ff00a2;
	font-size: 1em;
	text-align: center;
	font-weight: bold;
	white-space: nowrap;
	text-transform: uppercase;
}
#tcalPrevYear { background-image: url('img/prev_year.svg'); }
#tcalPrevMonth { background-image: url('img/prev_mon.svg'); }
#tcalNextMonth { background-image: url('img/next_mon.svg'); }
#tcalNextYear { background-image: url('img/next_year.svg'); }

/* table containing week days header and calendar grid */
#tcalGrid {
	border-collapse: collapse;
	
	width: 100%;
}
#tcalGrid th {
	border: 1px solid #fff;
	border-collapse: collapse;
	padding: 3px 0;
	text-align: center;
	font-weight:900;
	text-transform: uppercase;
	font-size: 0.8em;
	background-color: #8f3494;
	color: white;
}
#tcalGrid td {
	border: 0;
	border-collapse: collapse;
	padding: 2px 0;
	text-align: center;
	width: 14%;
	font-size: 1em;
	cursor: pointer;
}		
#tcalGrid td.tcalOtherMonth { color: #fff; }
#tcalGrid td.tcalWeekend { background-color: transparent; }
#tcalGrid td.tcalToday {  }
#tcalGrid td.tcalSelected { background-color: #ff00a2; color: #fff; font-weight: 900;}		
