/* GLOBAL */
.headerTitle {
	background: white;
	position: fixed;
	z-index: 9999;
}
.headerMenu {
	top: 120px;
	position: fixed;
	z-index: 9999;
}

.contenidoPagina {
	margin-top: 180px;
	min-height: calc(100vh - 180px);
}

.contenidoPagina + .contenidoPagina {
	margin-top: 20px;
	min-height: auto;
}

.row-eq-height {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.row-eq-height .pull-right {
	order: 2;
}
.row-eq-height .pull-left {
	order: 1;
}
.row-eq-height .middle {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
/* END - GLOBAL */

/* Botón Go Home */
.goHome {
	padding: 10px 30px;
	background-color: #1B9BFF;
	color: white;
	font-size: 20px;
	transition: box-shadow 0.5s ease-in-out, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.goHome:hover {
	-webkit-box-shadow: -7px 7px 5px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: -7px 7px 5px 0px rgba(0, 0, 0, 0.3);
	box-shadow: -7px 7px 5px 0px rgba(0, 0, 0, 0.3);
	padding: 10px 30px;
	background-color: white;
	color: #1B9BFF;
	border: 2px solid #1B9BFF;
	transition: box-shadow 0.5s ease-in-out, background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}
/* END - Botón Go Home */

/* Menú Día del balonmano Benjamín */
.menuBenjamin > div > a {
	padding: 0px 10px;
}
/* END - Menú Día del balonmano Benjamín */

/* Torneo Ajedrez */
.ajedrezNavidad .placeInfo a {
	margin-left: 15px;
}

.ajedrezNavidad .roundInfo {
	margin-top: 20px;
}

.ajedrezNavidad .roundInfo {
	text-align: center;
	width: calc(100% / 8);
}
/* END - Torneo Ajedrez */


/* Proximo Partido - Hurrengo partidua */
.contenidoPagina.proxPartido {
	padding: 30px 0px 0px 0px;
}

.contenidoPagina.proxPartido .matchInfoTeams .teamName {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	
	font-size: 20px;
}

.contenidoPagina.proxPartido .matchInfoTeams .teamImage img.horizontal {
	width: 150px;
}

.contenidoPagina.proxPartido .matchInfoTeams .teamImage img.vertical {
	height: 150px;
}

.contenidoPagina.proxPartido .matchInfoPlace .placeInfo {
	font-size: 20px;
}

.contenidoPagina.proxPartido .matchInfoPlace .placeInfo a {
	margin: 0 20px;
}

.contenidoPagina.proxPartido .matchInfoPlace .dateInfo {
	margin-top: 20px;
	font-size: 20px;
}

.contenidoPagina.proxPartido .matchInfoPlace .mapa {
	margin-top: 20px;
	height: 40vh;
}
/* END - Proximo Partido - Hurrengo partidua */


.marginFormulario {
	padding-top: 20px;
	margin-top: 180px;
	min-height: calc(100vh - 180px);
}


@media only screen and (max-width: 767px){
	.headerMenu {
		top: 70px;
	}
	 
	.contenidoPagina {
		margin-top: 150px;
		padding: 20px;
	}
	
	input {
		margin: 0 auto;
		width: 90%;
	}
	
	/* Torneo Ajedrez */
	.ajedrezNavidad .placeInfo span {
		display: block;
	}
	
	.ajedrezNavidad .placeInfo a {
		margin: 0px 50px 0px 0px;
		display: inline-block;
	}
	
	
	.ajedrezNavidad .roundInfo {
		width: inherit;
	}
	
	.ajedrezNavidad .roundInfo.col-xs-4 {
		width: calc(100% / 3);
	}
	
	.ajedrezNavidad .roundInfo.col-xs-6 {
		width: calc(100% / 2);
	}
	/* END - Torneo Ajedrez */
	
	/* Proximo Partido - Hurrengo partidua */
	.contenidoPagina.proxPartido {
		padding: 0px;
	}
	.contenidoPagina.proxPartido .matchInfoTeams .teamImage img {
		width: 90%;
	}
	
	.contenidoPagina.proxPartido .matchInfoTeams .teamName {
		font-size: 14px;
	}
	
	.contenidoPagina.proxPartido .matchInfoPlace .placeInfo {
		font-size: 14px;
	}
	
	.contenidoPagina.proxPartido .matchInfoPlace .dateInfo {
		font-size: 14px;
	}
	/* END - Proximo Partido - Hurrengo partidua */
	
	.marginFormulario {
		margin-top: 130px;
		min-height: calc(100vh - 130px);
	}
}