.calendarNav {
	float: left;
	position: relative;
	height: 100%;
	width: 150px;
	padding-top: 50px;
}

.calendarNav .contents {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.calendarNav .button {
	box-shadow: 2px 2px 8px black;
	width: 110px;
	height: 110px;
	margin: 10px auto;
	border-radius: 80px;
	position: relative;
	background: #FFFFFF;
	color: black;
}

.calendarNav .button .text {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	font-size: 0.6rem;
	text-align: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	line-height: 120%;
	text-transform: uppercase;
}

.calendarNav .button .big {
	display: block;
	font-size: 1.8rem;
}

.day {
	box-sizing: border-box;
	color: black;
	white-space: normal;
	padding: 60px 30px;
}

.day hr {
	border-color: black !important;
	border-width: 1px;
	border-bottom: none;
}

.day .date {
	font-size: 1rem;
	padding-left: 30px;
}

.day > .loading {
	position: relative;
	padding-top: 300px;
}

.day > .loading .spinner {
	display: block;
	
	margin: auto;
	
	border-right-width: 8px;
	border-right-style: solid;
	
	border-radius: 80px;
	width: 160px;
	height: 160px;
	
	-webkit-transform-origin: center center;
	transform-origin: center center;
	
	-webkit-animation: spinner 0.6s linear 0s infinite;
}

.day .empty{
	color: #444444;
	text-align: center;
}

.day .item {
	display: block;
	position: relative;
}

.day .item .itemContainer {
	position: relative;
	padding: 20px;
}

.day .item .itemContainer .backgroundHighlight {
	position: absolute;
	
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	
	opacity: 0;
}

.day .item.linked .itemContainer .backgroundHighlight {
	opacity: 0.3;
}

.day .item .itemContainer.tizenhovered .backgroundHighlight,
.day .item .itemContainer.focused .backgroundHighlight {
	opacity: 0.5;
}

.day .item.cancelled {
	color: #888888;
}

.day .item.cancelled::after {
	content: 'CANCELLED';
	display: block;
	position: absolute;
	
	top: 5px;
	right: 5px;
	
	padding: 10px;
	font-size: 0.6rem;
	
	border: #FF0000 solid 4px;
	border-radius: 10px;
	color: #FF0000;
}

.day .item.cancelled .backgroundHighlight {
	background: rgba(255, 0, 0, 0.25) !important;
}

.day .item .itemContents {
	position: relative;
}

/* Clearfix */
.day .item .itemContents::after {
	content: " ";
	visibility: hidden;
	display: block;
	height: 0;
	clear: both;
}

.day .item .itemContents .time {
	font-size: 0.9rem;
}

.day .item .itemContents .thumbnail {
	float: left;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	background: white;
	background-position: center center;
	background-size: 80% 80%;
	background-repeat: no-repeat;
	margin-right: 15px;
}

.day .item .itemContents .description {
	overflow: hidden;
	font-size: 0.85rem;
}

.day .item .responses {
	margin-bottom: 15px;
}

.day .item .created-by-thumbnail{
	float: right;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	background: white;
	background-position: center center;
	background-size: 100%;
	background-repeat: no-repeat;
	margin-right: 15px;
}

.day .item .calendar-item-profile-container{
	/*height: 64px;*/
	line-height: 48px;
	padding: 15px 20px;
}

.day .item .calendar-item-details-container{
	padding: 0 20px;
}

.day .item p.calendar-item-details-text, p.calendar-item-created-by-text{
	font-size: 0.85rem;
}
