.agenda {
	height: 100%;
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: row;
	font-family: Roboto, Arial, sans-serif;
	font-size: 14px;
}
.agenda .agenda-calendar {
	flex: 1;
}
.agenda .agenda-edition {
	width: 0;
	transition: width 0.1s;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
}
.agenda .agenda-edition.open {
	margin-left: 10px;
	min-width: 250px;
	width: 30%;
}
.agenda h2 {
	line-height: 1.85em;
	font-size: initial;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.agenda i.material-icons {
	line-height: 2.1em;
}
.agenda .agenda-edition .agenda-header {
	flex: 0; 
	height: 2.1em;
	line-height: 2.1em;
	margin-bottom: 15px;
}
.agenda .agenda-edition .agenda-header .agenda-edition-cancel {
	margin-left: 20px;
}
.agenda .agenda-edition .agenda-header .agenda-edition-focus-event:enabled {
	color: #95000b;
}
.agenda .agenda-edition .agenda-body {
	flex: 1;
	overflow-y: auto;
}
.agenda .agenda-edition .agenda-footer {
	height: 2.1em;
	margin-top: 15px;
}
.agenda .agenda-edition .agenda-footer .agenda-edition-save {
	float: right;
}
.agenda .agenda-edition .agenda-footer .agenda-edition-remove {
	float: left;
}
.agenda .fc-event {
	cursor: pointer;
}
.agenda .fc-event .fc-content,
.agenda .fc-event .fc-content > div {
	height: 100%;
}
.agenda button {
	outline: 0;
	float: right;
	padding: 0 .6em;
	border: 1px solid #cccccc;
	height: 2.1em;
	white-space: nowrap;
	font-size: 1em;
}
.agenda button.agenda-button-icon {
	outline: 0;
	cursor: pointer;
	float: right;
	padding: 0;
	border: 1px solid #cccccc;
	height: 2.1em;
	line-height: 2.1em;
}
.agenda button.agenda-button-icon i {
	height: inherit;
	line-height: inherit;
	font-size: 24px;
}
.agenda button:enabled {
	cursor: pointer;
}
.agenda button:focus:enabled {
	outline: none;
}
.agenda button:focus:enabled i {
	color: white;
}