@media only screen and (min-width: 1200px)
{
	#lista_noticias .noticia .title
	{
		font-family: "FuturaBold";
		font-size: 18pt;
		letter-spacing: 2px;
	}
	#lista_noticias .noticia .fecha
	{
		font-family: "FuturaBook";
		font-size: 12pt;
	}
	#lista_noticias .noticia .cuerpo img
	{
		margin-top: 20px;
		max-width: 640px;
	}
	#lista_noticias .noticia .cuerpo p
	{
		font-family: "FuturaBook";
		font-size: 14pt;
		letter-spacing: 2px;
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		text-align: left;
		margin-top: 20px;
		margin-bottom: 0px;
		max-width: 640px;
	}
	#lista_noticias .noticia .cuerpo p a
	{
		text-decoration: underline;
		color: white;
		transition: all var(--default-transition-time);
	}
	#lista_noticias .noticia .cuerpo p a:hover
	{
		color: var(--primary-color);
		transition: all var(--default-transition-time);
	}
	#lista_noticias .separador
	{
		position: relative;
		min-width: 400px;
		max-width: 50%;
		left: 50%;
		transform: translateX(-50%);
		background-image: linear-gradient(to right, white 33%, rgba(255,255,255,0) 0%);
		background-position: bottom;
		background-size: 8px 2px;
		background-repeat: repeat-x;
		padding-top: 50px;
		margin-bottom: 50px;
	}
}

@media only screen and (max-width: 1199px)
{
	#lista_noticias .noticia .title
	{
		font-family: "FuturaBold";
		font-size: max(2.5vh, 2.5vw);
		letter-spacing: 2px;
	}
	#lista_noticias .noticia .fecha
	{
		font-family: "FuturaBook";
		font-size: max(1.5vh, 1.5vw);
	}
	#lista_noticias .noticia .cuerpo img
	{
		margin-top: 20px;
		max-width: 640px;
	}
	#lista_noticias .noticia .cuerpo p
	{
		font-family: "FuturaBook";
		font-size: max(1.6vh, 1.6vw);
		letter-spacing: 2px;
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		text-align: left;
		margin-top: 20px;
		margin-bottom: 0px;
		max-width: 640px;
	}
	#lista_noticias .noticia .cuerpo p a
	{
		text-decoration: underline;
		color: white;
		transition: all var(--default-transition-time);
	}
	#lista_noticias .noticia .cuerpo p a:hover
	{
		color: var(--primary-color);
		transition: all var(--default-transition-time);
	}
	#lista_noticias .separador
	{
		position: relative;
		min-width: 400px;
		max-width: 50%;
		left: 50%;
		transform: translateX(-50%);
		background-image: linear-gradient(to right, white 33%, rgba(255,255,255,0) 0%);
		background-position: bottom;
		background-size: 12px 3px;
		background-repeat: repeat-x;
		padding-top: max(5vh, 5vw);
		margin-bottom: max(5vh, 5vw);
	}
}

body, html
{
	overflow-x: hidden;
}

#main, #lista_noticias
{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

#lista_noticias
{
	min-height: 700px;
}

#lista_noticias .noticia
{
	z-index: 1;
	position: static;
	opacity: 100%;
	transition: 0.25s;
	max-width: 640px;
	margin-top: 5vh;
	margin-bottom: 5vh;
}

#lista_noticias .noticia.hidden_left
{
	z-index: 0;
	position: absolute !important;
	margin-left: -50%;
	opacity: 0%;
}

#lista_noticias .noticia.hidden_right
{
	z-index: 0;
	position: absolute !important;
	margin-right: -50%;
	opacity: 0%;
}

.carousel_arrow
{
	z-index: 2;
	position: absolute;
	width: 7vw;
	height: 7vh;
	font-size: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	user-select: none;
}

.carousel_arrow img
{
	height: 100%;
}

.carousel_arrow.left
{
	transform: translate(calc(-320px - 50%));
}

.carousel_arrow.right
{
	transform: translate(calc(320px + 50%));
}