//@import url('custom_2.css');

@font-face {
  font-family: 'fontawesome-selected';
  src: url("../font/fontawesome-selected.eot");
  src: url("../font/fontawesome-selected.eot?#iefix") format('embedded-opentype'), url("../font/fontawesome-selected.woff") format('woff'), url("../font/fontawesome-selected.ttf") format('truetype'), url("../font/fontawesome-selected.svg#fontawesome-selected") format('svg');
  font-weight: normal;
  font-style: normal;
}

.fc-calendar-container {
	float: left;
	width: 100%;
	position: relative;
    text-align: center;
}

.fc-calendar {
    width: auto;
    height: 100%;
    margin: 0 auto;
    display: inline-block;
}

.fc-calendar,
.fc-calendar *{
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.fc-calendar .fc-head {
	height: 30px;
	line-height: 30px;
	background: #ccc;
	color: #fff;
	display: none;
}

.fc-calendar .fc-body {
	position: relative;
	width: auto;
    /*float: left;*/
    display: inline-block;
    margin: 0 auto;
	height: 100%;
	height: -moz-calc(100% - 30px);
	height: -webkit-calc(100% - 30px);
	height: calc(100% - 30px);
	
}

.fc-calendar .fc-row {
	float: left;
	width: auto;
	/*border-bottom: 1px solid #ddd;*/
}

.fc-calendar .fc-body .fc-row .hideMe{
	display: none;
}

.fc-four-rows .fc-row  {
	height: 25%;
}

.fc-five-rows .fc-row  {
	height: 20%;
}

.fc-six-rows .fc-row {
	height: 16.66%;
	height: -moz-calc(100%/6);
	height: -webkit-calc(100%/6);
	height: calc(100%/6);
}

.fc-calendar .fc-row > div,
.fc-calendar .fc-head > div {
	float: left;
	height: 50px;
	width:  40px; /* 100% / 7 */
	position: relative;
	cursor: pointer;
}

/* IE 9 is rounding up the calc it seems */
.ie9 .fc-calendar .fc-row > div,
.ie9 .fc-calendar .fc-head > div {
	width:  40px;
}

.fc-calendar .fc-row > div {
	
	/*padding: 4px;*/
	overflow: hidden;
	position: relative;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.fc-calendar .fc-body .fc-day:hover{
	background-color: #f7f7f7;
}
.fc-calendar .fc-body .fc-oggi{
	background-color: #8d969a;
}
.fc-calendar .fc-head > div {
	text-align: center;
}

.fc-calendar .fc-row > div > span.fc-date {
	float: left;
	width: 40px;
	line-height: 30px;
	color: #282828;
	text-align: center;
	font-family: 'db';
	font-size: 16px;
}

.fc-calendar .fc-row > div > span.fc-weekday {
	text-transform: uppercase;
	font-size: 10px;
	font-family: 'dr';
	float: left;
	width: 40px;
	line-height: 20px;
	color: #282828;
	text-align: center;
}

.fc-calendar .fc-row > div.fc-today {
	background: #0063a6;
	color: #fff;
}
.fc-calendar .fc-row > div.fc-today .fc-date,
.fc-calendar .fc-row > div.fc-today .fc-weekday{
	color: #fff;	
}

.fc-calendar .fc-row > div.fc-out {
	opacity: 0.6;
}

.fc-calendar .fc-row .fc-day-2{
	/*border-right: none;*/
	border-left: 1px solid #ddd;
}

.fc-calendar .fc-row > div:last-child,
.fc-calendar .fc-head > div:last-child {
	/*border-right: none;*/
	border-right: 1px solid #ddd;
}

.fc-calendar .fc-row:last-child {
	border-bottom: none;
}

@media (max-width: 1300px){
	.fc-calendar .fc-row > div, 
	.fc-calendar .fc-head > div{
		width: 30px;
	}
	.fc-calendar .fc-row > div > span.fc-date{
		width: 30px;
	}
	.fc-calendar .fc-row > div > span.fc-weekday{
		width: 30px;
	}
}