

.fc-calendar-container {
	height: 365px;
}

.custom-header {
	padding: 20px 20px 20px 30px;
	height: auto;
	position: relative;
	border-bottom: 1px solid #dedede;
}


.custom-header #custom-month {
	margin-right: 10px;
}

.custom-header h3 {
	width: 100%;
	color: #000;
	line-height: 30px;
	text-align: center;
	font-size: 24px;
	padding:0;
	margin: 10px 0 0 0;
}

.custom-header nav {
	width: 250px;
	position: absolute;

	top: 0;

	left: 50%;
    right: auto;

    transform: translateX(-50%) ;
    -webkit-transform: translateX(-50%) ;
    text-align: center;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.custom-header nav span {
	float: left;
	width: 35px;
	height: 35px;
	position: relative;
	color: transparent;
	cursor: pointer;
	background: none;
	margin: 0 1px;
	font-size: 21px;
	font-weight: normal;
	color: #787878;
	transform: translateX(0);
	transition: color 0.3s, transform 0.3s;
}

.custom-header nav span:hover {
	color: #333;
}


.custom-header span:before {
	font-family: 'icomoon' !important;
	color: #6c6e71;
	display: inline-block;
	text-align: center;
	width: 100%;
	text-indent: 4px;
}

.custom-header nav span.custom-prev:before {
	content: "\e92d";
}

.custom-header nav span.custom-prev:hover {
	transform: translateX(-3px);
}

.custom-header nav span.custom-next {
	float: right;
}

.custom-header nav span.custom-next:hover {
	transform: translateX(3px);
}

.custom-header nav span.custom-next:before {
	content: "\e92e";
}

.custom-header nav span.custom-current:before {
	content: '\e976';
}

.custom-header nav span.custom-current {
	display: none;
}



.fc-calendar {
	background: rgba(255,255,255,0.1);
	width: auto;
	top: 10px;
	bottom: 20px;
	left: 0;
	right: 0;
	height: auto;
	border-radius: 20px;
	position: absolute;
}

.fc-calendar .fc-head {
	background: transparent;
	height: 40px;
	line-height: 40px;
	padding: 0 ;
}

.fc-calendar .fc-head > div {
	font-size: 15px;
	letter-spacing: 0px;
	margin: 0 5px;
	color: #c9151d;
}



.fc-calendar .fc-row > div {
	 background: transparent;
}


.fc-calendar .fc-row > div > span.fc-date {
	width: 47px;
	height: 47px;
	line-height: 47px;
	border-radius: 99em;
	background: transparent;
	text-align: center;
	color: #000;
	font-size: 20px;
	font-weight: normal;
	margin: 10px auto;
	text-shadow:none;
	transition: color 0.3s , background 0.3s ease-out;
}



.fc-calendar .fc-row > div:hover span.fc-date  {
	background: #c8c8c8;
	color: #000;
}

.fc-calendar .fc-row > div.active span.fc-date {
	background: #c9151d;
	color: #fff;
}

.fc-calendar .fc-row > div.not > span.fc-date {
	background: transparent;
	color: #b4b4b4;
	text-decoration: line-through;
	cursor: default;
}

.fc-calendar .fc-row > div.fc-today {
	background: transparent !important;
	box-shadow: none;
}

.fc-calendar .fc-row > div.fc-today .fc-date {
	background: none;
	color: #000;
}


@media screen and (min-width: 768px) {
 .fc-calendar .fc-row > div > span.fc-date {
 	position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
 }
}


.fc-calendar .fc-body {
	border: none;
	padding: 0px;
}

.fc-calendar .fc-row {
	box-shadow: inset 0 -1px 0 rgba(255,255,255,0.2);
	border: none;
}

.fc-calendar .fc-row:last-child {
	box-shadow: none;
}

.fc-calendar .fc-row > div {
	box-shadow: -1px 0 0 rgba(255, 255, 255, 0.2);
	border: none;
	padding: 0;
	cursor: pointer;
	z-index: 999;
}

.fc-calendar .fc-row > div:first-child {
	box-shadow: none;
}


.fc-calendar .fc-row > div > div {
	margin-top: 35px;
}

.fc-calendar .fc-row > div > div a,
.fc-calendar .fc-row > div > div span {
	color: rgba(255,255,255,0.7);
	font-size: 12px;
	text-transform: uppercase;
	display: inline-block;
	padding: 3px 5px;
	border-radius: 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	margin-bottom: 1px;
	background: rgba(255,255,255,0.1);
}

.no-touch .fc-calendar .fc-row > div > div a:hover {
	background: rgba(255,255,255,0.3);
}

@media screen and (max-width: 767px) , screen and (max-height: 450px) {
	.custom-header,
	.custom-header nav,
	.custom-calendar-full,
	.fc-calendar-container,
	.fc-calendar,
	.fc-calendar .fc-head,
	.fc-calendar .fc-row > div > span.fc-date {
		position: relative;
		top: auto;
		left: auto;
		bottom: auto;
		right: auto;
		height: auto;
		width: auto;
	}
	.fc-calendar {
		margin: 20px 0;
	}

	.custom-header h3 {
		line-height: normal;
		text-align: center;
		padding: 0;
	}

	.custom-header h3 nav {
		position: absolute;
	    left: auto;
	    bottom: -13px;
	    width: 100%;
	    transform: none;
	    -webkit-transform: none;
	}

	.fc-calendar .fc-row,
	.ie9 .fc-calendar .fc-row > div,
	.fc-calendar .fc-row > div {
		height: auto;
		width: 100%;
		border: none;
	}

	.fc-calendar .fc-row > div {
		float: none;
		min-height: 50px;
		box-shadow: inset 0 -1px rgba(255,255,255,0.2) !important;
		border-radius: 0px !important;

		float: left;
		width: calc(100%/7 - 10px);
	}

	.fc-calendar .fc-row > div:empty{
		min-height: 0;
		height: 0;
		box-shadow: none !important;
		padding: 0;

		//display: none;
	}

	.fc-calendar .fc-row {
		box-shadow: none;
	}

	.fc-calendar .fc-head {
	//	display: none;
	}

	.fc-calendar .fc-row > div > div {
		margin-top: 0px;
		padding-left: 10px;
		max-width: 70%;
		display: inline-block;
	}

	.fc-calendar .fc-row > div.fc-today {
		background: rgba(255, 255, 255, 0.2);
	}

	.fc-calendar .fc-row > div.fc-today:after {
		display: none;
	}

	.fc-calendar .fc-row > div > span.fc-date {
		width: 100%;
		border-radius: 0;
		display: inline-block;
		text-align: center;
		font-size: 16px;
	    vertical-align: middle;
	    float: left;
	    margin: 0;
	    top: 0;
	}

	.fc-calendar .fc-row > div > span.fc-weekday {
		display: inline-block;
		width: 35px;
		font-size: 12px;
		text-transform: uppercase;
		vertical-align: middle;
		padding-left: 0;

		display: none;
	}
}