/* Calendar
-------------------------------------------------- */
.calendar {
}

#calendar_button_left {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 30px;
	height: 30px;
	background-image: url(/static/img/default/angle-left.svg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
}

#calendar_button_right {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 30px;
	height: 30px;
	background-image: url(/static/img/default/angle-right.svg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
}

.calendar-head {
	text-align: center;
}

	.calendar-head .prev-month,
	.calendar-head .next-month,
	.calendar-head .actual-month{
		font-size: 14px;
		text-transform: uppercase;
	}
	
	.calendar-head .prev-month{
		float: left;
	}

	.calendar-head .next-month{
		float: right;
	}

.calendar-body {
	font-size: 13px;
}

	.calendar-body .calendar-table tr.day-names td {
		background: #f0f0f0;
	}

	.calendar-body .calendar-table td {
		width: 30px;
		height: 30px;
		text-align: center;
	}

	.calendar-body .calendar-table td.default {
		background: transparent;
	}

	.calendar-body .calendar-table td.has-event {
		background: #c6a1a3;
	}

		.calendar-body .calendar-table td.default a {
			color: black;
		}

		.calendar-body .calendar-table td.default a.day-passed {
			color: #b7b7b7;
		}

	.calendar-body .calendar-table td.today {
/*		background: #a82b31; */
		border: 1px solid #a82b31;
	}

		.calendar-body .calendar-table td.today a {
/*			color: white; */
		}

		.calendar-body .calendar-table td a {
		}

		.calendar-body .calendar-table td a.has-event {
			/* color: #1c4c97; */
			color: white;
			cursor: pointer;
		}

		.calendar-body .calendar-table td.today a.has-event {
			color: #a82b31;
		}

		.calendar-body .calendar-table td a.no-event {
			color: black;
		}

div.calendar_day_events {
	/* border: 1px solid #808080; */
	background: white;
	padding: 10px 0px;
}

div.calendar_day_events p {
	font-size: 12px;
	margin: 4px 0px;
}




/* Big calendar */

div.calendar-container {
	margin-top: 0;
}

div#big_calendar_outer {
	margin-top: 20px;
}

div.big_calendar_main {
	clear: both;
}

div.big_calendar_main div.big_calendar_cal {
	width: 340px;
	min-height: 254px;
	float: left;
	clear: left;
}

@media screen and (min-width: 1480px) {
	div.big_calendar_main div.big_calendar_cal {
		border-right: solid 1px #f0f0f0;
	}
}


	div.big_calendar_main div.big_calendar_cal div.big_calendar div.week {
		clear: both;
		margin-left: 0;
	}

		div.big_calendar div.week div.day {
			width: 25px;
			font-size: 14px;
			margin: 4px;
			padding: 9px 9px 8px 2px;
			float: left;
			cursor: pointer;
			text-align: right;
		}

		div.big_calendar div.week div.active {
			border: 1px solid #d0d0d0;
		}

		div.big_calendar div.week div.inactive {
			color: #a0a0a0;
			border: 1px solid #f0f0f0;
		}

		div.big_calendar div.week div.event {
			background: #4aaa00;
		}

		div.big_calendar div.week div.no_event {
			background: #f8f8f8;
		}
		
		div.big_calendar div.week div.selected {
			background: #1a7a00;
		}

	div.big_calendar_button {
		cursor: pointer;
		background: #f0f0f0;
		border: 1px solid #a0a0a0;
		padding-top: 10px;
		width: 36px;
		height: 26px;
		float: left;
		text-align: center;
		margin-bottom: 4px;
	}
	
	div.big_calendar_month {
		width: 234px;
		float: left;
		margin: 4px 2px;
		text-align: center;
		font-weight: bold;
		color: #1a7a00;
		font-size: 15px;
		padding-top: 6px;
	}


@media screen and (min-width: 1480px) {
	div.big_calendar_main div.big_calendar_events {
		min-height: 234px;
		float: left;
		clear: none;
		padding: 0px 0px 10px 10px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1480px) {
	div.big_calendar_main div.big_calendar_events {
		padding: 0px 0px 20px 20px;
	}
}

@media screen and (max-width: 768px) {
	div.big_calendar_main div.big_calendar_events {
		clear: both;
		padding: 20px 0px 20px 0px;
	}
}

	div.big_calendar_main div.big_calendar_events div.event p {
		margin: 0px 0px 5px 0px;
	}
	
		div.big_calendar_main div.big_calendar_events div.event p.title a {
			font-size: 16px;
			text-decoration: none;
		}
	
	div.big_calendar_main div.big_calendar_events div.event p.date {
		color: #808080;
		font-size: 10pt;
		margin-bottom: 10px;
	}
	
	div.big_calendar_main div.big_calendar_events div.event p.more {
		margin-top: 10px;
		text-align: right;
	}


div.big_calendar_main div.big_calendar_event_data {
	width: 100%;
	min-height: 254px;
	float: left;
	clear: both;
	margin-top: 10px;
}

	div.big_calendar_main div.big_calendar_event_data h3 {
		font-size: 18px;
		text-decoration: none;
		font-weight: normal;
	}
	
	div.big_calendar_main div.big_calendar_event_data p.date {
		font-size: 12px;
		margin-bottom: 15px;
	}
	
	div.big_calendar_main div.big_calendar_event_data div.description {
		font-size: 12px;
	}

/* Tinyscrollbar CSS */

@media screen and (min-width: 1480px) {

	.tinyscrollbar { }
	.tinyscrollbar .viewport { width: 390px; height: 234px; overflow: hidden; position: relative; }
	.tinyscrollbar .overview { list-style: none; position: absolute; left: 0; top: 0; }
	.tinyscrollbar .thumb { background-color: #1a7a00; -webkit-border-radius: 4px; border-radius: 4px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; }
	.tinyscrollbar .scrollbar { position: relative; float: right; width: 13px; }
	.tinyscrollbar .track { background-color: #F0F0F0; height: 232px; width:13px; position: relative; padding: 0; border: solid 1px #1a7a00; -webkit-border-radius: 4px; border-radius: 4px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; }
	.tinyscrollbar .thumb { height: 20px; width: 13px; cursor: pointer; overflow: hidden; position: absolute; top: 0; }
	.tinyscrollbar .thumb .end { overflow: hidden; height: 5px; width: 13px; }
	.tinyscrollbar .disable{ display: none; }
	.tinyscrollbar .thumb .end {background-color: #1a7a00; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;}

}