section#contenedor-entradas {
	padding: 0;
	margin: 2% auto;
	width: 80%;
	min-height: 200px;
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}

section#entradas {
	padding: 0;
	width: 100%;
	min-height: 200px;
	flex-grow: 1;
}

section#sidebar {
	padding: 0;
	width: 400px;
	min-width: 400px;
	min-height: 200px;
}

div.entrada{
	width: 96%;
	margin: 2%;
	margin-top: 60px;
	min-height: 200px;
	background-color: white;
	box-shadow: 0px 0px 20px 5px #E0E0E0;
	border-radius: 2px;
	overflow: hidden;
}

h1.titulo-entrada {
	text-align: center;
	padding-top: 20px;
}

div.img_entrada {
	margin-top: 20px;
	width: 100%;
	height: 300px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	position: relative;
}

div.fecha-entrada {
	float:right;
	margin: 20px;
	width: 90px;
	height: 120px;
	background-color: #08BCE5;
}

p.dia-entrada {
	font-size: 4em;
	color: white;
	text-align: center;
	line-height: 80px;
}

p.mes-entrada {
	text-align: center;
	color: white;
	font-size: 1.2em;
}

div.info-entrada {
	position: absolute;
	bottom: 20px;
	left: 0px;
	min-width: 10%;
	max-width: 80%;
	height: 60px;
	background-color: rgba(255,255,255,.8);
}

p.info-entrada {
	padding-left: 20px;
	padding-right: 20px;
	line-height: 60px;
	font-size: 1.3em;
	color: #333;
}

a.etiqueta-entrada {
	font-size: .8em !important;
	color: #666;
	text-decoration: none;
}

a.etiqueta-entrada:hover {
	text-decoration: underline;
}

div.extracto-entrada {
	margin: 2% auto;
	width: 96%;
}

a.ver-mas {
	font-size: 1.2em;
	float:right;
	padding: 10px 30px;
	background-color: #08BCE5;
	color: white;
	margin: 20px;
	text-align: right;
	text-decoration: none;
}

div.contenedor-sidebar {
	margin: 60px auto;
	width: 100%;
	min-height: 200px;
}

div.contenedor-sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
	width: 100%;
}

div.contenedor-sidebar ul li {
	font-size: 1.1em;
	color: #333;
	text-decoration: none;
	padding: 10px;
	border-bottom: 1px solid #999;
}

div.contenedor-sidebar ul li a {
	color: #333;
}

div.contenedor-sidebar ul li a:hover {
	color: #333 !important;
	text-decoration: underline;
} 

div.contenedor-sidebar ul li.titulo {
	font-size: 1.3em;
	padding: 0px 10px 20px 10px;
	border-bottom: none;
}

/*-------------------- paginacion ----------------------------------*/

section#paginacion {
	padding: 0;
	margin: 2% auto;
	max-width: 80%;
	min-height: 50px;
	overflow: hidden;
	display: flex;
	justify-content: flex-end;
}

section#paginacion ul {
	list-style: none;
	display: block;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}

section#paginacion ul li {
	display: block;
	margin: 4px;
	margin-top: 10px;
}

section#paginacion ul li a {
	padding: 10px 20px;
	color: #08BCE5;
	box-shadow: 0px 0px 5px 1px #d6d6d6;
	border-radius: 2px;
	text-decoration: none;
}

section#paginacion ul li a:hover, a.selected {
	color: white !important;
	background-color: #08BCE5;
}

p.puntos-paginacion {
	font-size: 1.8em;
	padding: 0px 5px;
	margin: 10px 0px 0px 0px;
}

section#contenedor-sin-entradas {
	margin: 20px auto;
	width: 80%;
}

img#sad {
	display: block;
	margin: auto;
}

h2#texto-sin-entradas {
	margin-top: 60px;
	text-align: center;
	color: #999;
}


@media (max-width: 990px) {
	section#contenedor-entradas, div#contenido-entrada {
		flex-direction: column;
	}

	section#sidebar {
		width: 100%;
	}
}

@media (max-width: 630px) {
	section#paginacion ul li a {
		font-size: .8em;
		padding: 5px 10px;
	}
}


/*--------------------- pagina entrada-----------------------------*/

div#contenedor-imagen-entrada {
	padding: 0;
	width: 100%;
	height: 500px;
	background-size: cover !important;
	background-repeat: no-repeat;
	background-position: top center;
}

div#contendido-entrada {
	margin: 50px auto;
	max-width: 1200px;
	width: 80%;
	min-height: 400px;
}

p#titulo-entrada {
	font-size: 3em;
	text-align: center;
	color: #333;
	line-height: 60px;
}

p#info-entrada-autor {
	text-align: center;
	font-size: 1.2em;
	color: #999;
}

div#contenido-entrada {
	padding: 0;
	margin: 2% auto;
	min-height: 200px;
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}

div#texto-entrada {
	margin: 60px auto;
	padding:20px;
	min-height: 200px;
	flex-grow: 1;
}

@media(max-width: 450px) {
	div#contenido-entrada {
		width: 75%;
	}
}