/* ---------- CALENDAR ---------- */
@import url(../../api/-family-fontawesome.css);

*[class*="fontawesome-"]:before {
  font-family: 'FontAwesome', sans-serif;
}


.calendar {
	text-align: center;
}

.calendar table {
    text-align: center;
     margin: 0 auto;
}

.calendar header {
	position: relative;
}

.calendar h2 {
	text-transform: uppercase;
}

.calendar thead {
	font-weight: 800;
	text-transform: uppercase;
}

.calendar tbody {
	color: #7c8a95;
}

.calendar tbody td:hover {
	border: 2px solid #c8c8c8 ;
    cursor: pointer;
}

.calendar tbody td a {
    width: 100%;
    display: block;
    cursor: pointer;
}

.calendar tbody td a:hover {
    width: 100%;
    color: #000000;
    display: block;
    cursor: pointer;
}


.calendar td {
    border: 2px solid transparent;
    -ms-border-radius: 50%;
    border-radius: 50%;
	display: inline-block;
	height: 5em;
	line-height: 5em;
	text-align: center;
	width: 5em;
}

.calendar .prev-month,
.calendar .next-month {
	color: #cbd1d2;
}

.calendar .prev-month:hover,
.calendar .next-month:hover {
	border: 2px solid #cbd1d2;
}

.current-day {
	background: #c8c8c8 ;
	color: #f9f9f9;
}

.event {
	cursor: pointer;
	position: relative;
}

.event:after {
    background: #c8c8c8 ;
    -ms-border-radius: 50%;
    border-radius: 50%;
	bottom: .5em;
	display: block;
	content: '';
	height: .5em;
	left: 50%;
	margin: -.25em 0 0 -.25em;
	position: absolute;
	width: .5em;
}

.event.current-day:after {
	background: #f9f9f9;
}

.btn-prev,
.btn-next {
    border: 2px solid #cbd1d2;
    -ms-border-radius: 50%;
    border-radius: 50%;
	color: #cbd1d2;
	height: 2em;
	font-size: .75em;
	line-height: 2em;
	margin: -1em;
	position: absolute;
	top: 50%;
	width: 2em;
}

.btn-prev:hover,
.btn-next:hover {
	background: #cbd1d2;
	color: #f9f9f9;
}

.btn-prev {
	left: 6em;
}

.btn-next {
	right: 6em;
}