.cal {
	min-width: 220px;
	padding: 10px 10px;
	margin-bottom: 20px;
	background: #000;
	font-family: "epocapro", sans-serif;
}

/* Contents
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.cal p {
	margin: 0;
}

.cal p.date {
	text-align: center;
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 2px;
	margin-bottom: 10px;
	color: #FFF;
}

.cal .body {
	margin-bottom: 20px;
}

.cal .cell {
	width: calc(100% / 7 - 2px);
	ocursor: pointer;
}

.cal .weekdays {
	text-align: center;
	margin-bottom: 5px;
}

.cal .weekdays .cell {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 300;
	color: #ccc;
	margin: 1px;
}

.cal .week {
	text-align: center;
	clear: both;
	padding-bottom: calc(100% / 8);
}

.cal .week .cell {
	display: inline-block;
	padding-bottom: calc(100% / 7 - 2px);
	margin: 1px;
	float: left;
	background-color: #222;
	border: 1px solid #000;
	border-radius: 0px;
	position: relative;
	cursor: pointer;
}

.cal .week .cell:not(.day) {
	opacity: 0;
}

.cal .week .day .date {
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 400;
	width: 50%;
	height: 50%;
	margin: auto;
	pointer-events: none;
}


/* Today
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.cal .week .day.tooday {
	background-color: white;
}
.cal .week .day.tooday .date {
	color: black;
}




/* Calendar Day Selection
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.cal .week .cell.day:not(.selected):hover {
	background: #000;
	border: 1px solid white;
}

.cal .week .cell.day:not(.selected):hover .event {
	opacity: 0.8;
}

.cal .week .cell.selected {
/*	transition: background-color 0.5s ease;
	background-color: red;*/
	border: 1px solid white;
}

.cal .week .cell.selected .event {
/*	opacity: 0;*/
}

.cal .week .cell.faint {
/*	opacity: 0.5;*/
}
