body, html {
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 12px;
}

.textoinicio {
	color:#ffffff;
}

#caja {
	position: absolute;
	overflow-x: hidden;
	width: 100%;
	min-height: 100%;
}
#logo {

}

#top_menu {
	float: right;
}

#menu {
	position: relative;
	left: 50%;
	transform: translate(-50%);
	background-color: black;
	color: white;
	height: 40px;
	overflow-x: visible;
	overflow-y: hidden;
	cursor: pointer;
	width: 1000000px;
}

#slider {
	position: absolute;
	display: table;
	height: 40px;
	line-height: 40px;
}

#triangulo {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	z-index: 1;
}

.opcion {
	display: inline-block;
	box-sizing: border-box;
	height: 30px;
	line-height: 30px; 
	margin-right: 10px;
	margin-left: 10px;
	background-color: #aaaaaa;
	border-radius: 10px;
	padding-left: 15px;
	padding-right: 15px;
}

.opcionSel {
	background-color: #5555ee;
	color: #ffffff;
	font-weight: bold;
}

#contenedor {
	position: relative;
	column-count: 4;
	column-gap: 15px;
	column-fill: balance;
	box-sizing: border-box;
	padding: 5px;
}

.tarjeta {
	position: relative;
	display: inline-grid;
	break-inside : avoid;
    width: calc(100% - 10px);
    min-height: 256px;
    float: left;
	-webkit-box-shadow: 2px 2px 6px 0px rgba(117,111,117,1);
	-moz-box-shadow: 2px 2px 6px 0px rgba(117,111,117,1);
	box-shadow: 2px 2px 6px 0px rgba(117,111,117,1);
	overflow: hidden;
	cursor: pointer;
	margin-bottom: 10px;
	margin-top: 5px;
	font-family: "Roboto","Arial","Sans-Serif";
	font-size: 12px;
	color: #555555;
}

.tarjeta:hover {
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.imgTarjeta {
	width: 100%;
}

.tituloTarjeta {
	padding: 5px;
	font-size: 16px;
	font-weight: bold;
}

.textoTarjeta {
	margin: 10px;
	text-align: justify;
}

a {
	text-decoration: none;
	color: inherit;
}
#copyright, #terminos, #privacidad, #contacto{
	font-size: 11px;
}

#terminos, #privacidad, #contacto{
	cursor: pointer;
}

#terminos:hover, #privacidad:hover, #contacto:hover{
	color: #5555FF;
}

#creditos{
	position: fixed;
	bottom: 0px;
	right: 10px;
	font-size: 9px;
	background-color: #ffffff;
	border-top: 1px solid #AAAAAA;
	border-left: 1px solid #AAAAAA;
	border-right: 1px solid #AAAAAA;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 3px;
}

#cookies{
	visibility: hidden;
	font-weight: bold;
	width: 100%;
	max-width: 350px;
	position: fixed;
	bottom: 24px;
	background-color: rgba(65, 180, 255, 0.95);
	color: #ffffff;
	padding: 15px;
	border-radius: 15px;
	z-index: 100;
	box-sizing: border-box;
}

#boton_cookies {
	background-color: #000088;
	color: #FFFFFF;
	border: 0px;
	border-radius: 5px;
	padding: 2px;
	outline:none;
	cursor: pointer;
}

#boton_cookies:hover {
	color: #000000;
	background-color: #55FF55;
}

@media only screen and (max-width: 1250px) {
	#contenedor {
		column-count: 3;
	}
}

@media only screen and (max-width: 950px) {
	#contenedor {
		column-count: 2;
	}

}

@media only screen and (max-width: 500px) {
	#contenedor {
		column-count: 1;
	}

	.tarjeta {
		width: calc(100% - 10px);
	}

	#pie{
		height: 110px;
		padding: 20px;
		background-color: #CCCCCC;
	}

	#copyright, #terminos, #privacidad, #contacto{
		text-align: left;
		width: 100%;
		display: block;
		margin-bottom: 10px;
	}
}

@media only screen and (min-width: 501px) {
	#pie{
		height: 24px;
	}

	#copyright, #terminos, #privacidad, #contacto{
		text-align: center;
		width: 24%;
		display: inline-block;
	}
}