@import url('demo.css');


.fc-calendar-container {
	position: relative;
	height: 400px;
	width: 100%;
}

.fc-calendar {
	width: 100%;
	height: 100%;
}

.fc-calendar .fc-head {
	height: 30px;
	line-height: 30px;
	background: #ccc;
	color: #fff;
}

.fc-calendar .fc-body {
	position: relative;
	width: 100%;
	height: 100%;
	height: -moz-calc(100% - 30px);
	height: -webkit-calc(100% - 30px);
	height: calc(100% - 30px);
	border: 1px solid #ddd;
}

.fc-calendar .fc-row {
	width: 100%;
	border-bottom: 1px solid #ddd;
}

.fc-four-rows .fc-row  {
	height: 25%;
}

.min-lg-size .fc-five-rows .fc-row {
	height: 68px;
}
.fc-five-rows .fc-row  {
	height: 20%;
}

.fc-six-rows .fc-row {
	height: 16.66%;
	height: -moz-calc(100%/6);
	height: -webkit-calc(100%/6);
	height: calc(100%/6);
}

.fc-calendar .fc-row > div,
.fc-calendar .fc-head > div {
	float: left;
	height: 100%;
	width:  14%; /* 100% / 7 */
	width: -moz-calc(100%/7 - 10px);
	width: -webkit-calc(100%/7 - 10px);
	width: calc(100%/7 - 10px);
	position: relative;
}

/* IE 9 is rounding up the calc it seems */
.ie9 .fc-calendar .fc-row > div,
.ie9 .fc-calendar .fc-head > div {
	width:  14.2%;
}

.fc-calendar .fc-row > div {
	border: none;
	background: #f4f4f4;
	padding: 4px;
	overflow: hidden;
	position: relative;
	margin: 5px;
	transition: background 0.35s ease-out;
}

// .fc-calendar .fc-row > div:hover ,
// .fc-calendar .fc-row > div:focus,
// .fc-calendar .fc-row > div.active {
// 	background: #6c6e71;
// 	transition: background 0.35s ease-out;
// }

.fc-calendar .fc-row > div:hover .fc-weekday,
.fc-calendar .fc-row > div:focus .fc-weekday,
.fc-calendar .fc-row > div.active .fc-weekday {
//	color: #fff;
}


.fc-calendar .fc-head > div {
	text-align: center;
}

.fc-calendar .fc-row > div > span.fc-date {
	position: absolute;
	width: 30px;
	height: 20px;
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
	color: #ddd;
	text-shadow: 0 -1px 0 rgba(255,255,255,0.8);
	bottom: 5px;
	right: 5px;
	text-align: right;
	transition: color 0.3s ease-out;
}

.fc-calendar .fc-row > div:hover > span.fc-date,
.fc-calendar .fc-row > div:focus > span.fc-date,
.fc-calendar .fc-row > div.active > span.fc-date{
	color: #fff;
	transition: color 0.3s ease-out;
}


.fc-calendar .fc-row > div > span.fc-weekday {
	padding-left: 5px;
	display: none;
}

.fc-calendar .fc-row > div.fc-today {
	background: #fff4c3;
}

.fc-calendar .fc-row > div.fc-out {
	opacity: 0.6;
}

.fc-calendar .fc-row > div:last-child,
.fc-calendar .fc-head > div:last-child {
	border-right: none;
}

.fc-calendar .fc-row:last-child {
	border-bottom: none;
}
