
.rsc-calendar * {
	box-sizing: border-box;
}
.rsc-calendar {
	font-size: 16px;
	width: 100%;
	margin: 0 0 1.75em;
	border: 1px solid #d1d1d1;
	border-width: 1px 0 0 1px;
	border-collapse: collapse;
}

.rsc-calendar caption {
	background: #9c9caf;
	text-align: left;
	color: #ececef;
	font-weight: bold;
	padding: 0 15px;
	line-height: 1.75;
}

.rsc-calendar .cfc-caption-year {
	float: right;
	opacity: .5;
}

.rsc-calendar th {
	background: #ececef;
	padding: 5px;
	font-size: small;
	/* font-weight: normal; */
	line-height: 2rem;
	border: 1px solid #d1d1d1;
	border-width: 0 1px 1px 0;
	text-align: center;
}

.rsc-calendar-monthly th,
.rsc-calendar-weekly th {
	width: calc(100% / 7);
}

.rsc-calendar th span {
	
}

.rsc-calendar th.rsc-sat {
	background: #eaeaff;
}

.rsc-calendar th.rsc-sun {
	background: #ffeaea;
}
.rsc-calendar th.rsc-today {
	background: rgba(200,0,0,.2);
}

.rsc-calendar td {
	background: #fafafa;
	padding: 5px;
	vertical-align: top;
	border: 1px solid #d1d1d1;
	border-width: 0 1px 1px 0;
	height: 3em;
}
.rsc-calendar td time{
	display: inline-block;
	text-align: center;
	width: 28px;
	height: 28px;
	line-height: 28px;
}

.rsc-calendar td.rsc-sat {
	background: #f5f5ff;
	padding: 5px;
}
.rsc-calendar td.rsc-sun {
	background: #fff5f5;
	padding: 5px;
}
.rsc-calendar-weekly td.rsc-today {
	background: rgba(200,0,0,.2);
}
.rsc-calendar td.rsc-today time{
	background: rgba(200,0,0,.4);
	border-radius: 50%;
	color: #fff;
}

.rsc-calendar-daily-vertical th{
	width: 110px;
}

.rsc-calendar-event-wrapper {
	display: block;
	position: relative;
	height: 1.6em;
	width: 100%;
	max-width: 200px;
}

.rsc-calendar-daily-vertical .rsc-calendar-event-wrapper {
	float: left;
	margin: 0 5px;
}

.rsc-calendar-event {
	cursor: pointer;
	position: absolute;
	display: block;
	width: calc(100% - 10px);
	text-align: center;
	border-radius: 1em;
	font-size: small;
	padding: 0 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 1.6em;
	min-width: 1.6em;
	width: 100%;
	z-index: 0;
	left: 0;
}

.rsc-calendar-event.is-active {
	bottom: 1em;
	height: auto;
	width: 200px;
	left: 50%;
	padding: 10px;
	margin-left: -100px;
	white-space: normal;
	z-index: 1;
	transition: .2s;
	font-size: medium;
	overflow: visible;
	text-overflow: clip;
	/* position: relative; */
}
.rsc-calendar-event.is-active .rsc-triangle {
	content: "";
	border: 10px solid transparent;
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -10px;
	width: 10px;
	height: 10px;
}

.rsc-calendar-event-wrapper {
	margin-top: 3px;
}

.sidebar .rsc-calendar th {
	font-size: 12px;
}