/* Enter Your Custom CSS Here */
.header-image::after{
  background-color: rgba(37, 46, 53, 0) !important;
}
/* Amaga la vora de la taula de la secció de tandes */
table#table-tandes {
	border: none;
}
#table-tandes tr>td {
  border:none;
}
/*Amaga el label de copyright */
.site-copyright {
  display: none !important;
}

#primary-menu {
  margin-right:-20px;
}

.home .content-area {
       width: 100%;
}
.home .widget-area {
       display: none;
}

.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


/* Permet posar imatges al mig del text */
.alignright { float: right; }
.alignleft { float: left; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.entry-content img { padding:10px }

.esplai-menu {
    height: 12em;
    vertical-align: middle;
    text-align: center;
    line-height: 12em;
    background: red;
    margin: 1.2em;
    float: left;
    border-radius: 30px;
    width: 12em;
  	opacity:0;
  	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;	
	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;
	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		
	visibility: visible !important;
  	-webkit-animation-fill-mode: forwards; /* Chrome, Safari, Opera */
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
	0% {
		transform: scale(0);
		opacity: 0.0;
	}
	60% {
		transform: scale(1.1);
	}
	80% {
		transform: scale(0.9);
		opacity: 1;
	}	
	100% {
		transform: scale(1);
		opacity: 1;
	}		
}

@-webkit-keyframes fadeIn {
	0% {
		transform: scale(0);
		opacity: 0.0;
	}
	60% {
		transform: scale(1.1);
	}
	80% {
		transform: scale(0.9);
		opacity: 1;
	}	
	100% {
		transform: scale(1);
		opacity: 1;
	}		
}