<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root{
	--texto-s : calc(.9vw + .9vh);
	--texto-m : calc(1.5vw + 1vh);
	--texto-l : calc(2vw + 1vh);		
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	word-break: break-word;
	font-family: 'Montserrat', sans-serif;
}

html::-webkit-scrollbar {
    width: 8px;     /* TamaÃ±o del scroll en vertical */
    height: 8px;    /* TamaÃ±o del scroll en horizontal */
    background: #E3E5EB;
}

/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
html::-webkit-scrollbar-thumb {
    background: #a9a3cf;
    border-radius: 4px;
}
/* Cambiamos el fondo y agregamos una sombra cuando estÃ© en hover */
html::-webkit-scrollbar-thumb:hover {
    background: #8299ff;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

body {
    background-color: rgb(251,251,251);
	min-height: 100vh;
}

.contenedor {
	margin: 50px 5%;
	position: absolute;
	padding: 20px 2% 0px 2%;
	width: 90%;
    max-width: 90%;
	overflow-y: hidden;
	display: flex;
	flex-wrap: wrap;
	z-index: 0;
	justify-content: center;
	text-transform: uppercase;
	align-items: flex-start;
}

.contenedor-lista {
	border-radius: 10px;
	padding: 1%;
	width: 98%;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contenedor-portada {
	position: relative;
    width: 50%;
}

.contenedor-lista:after {
	content: '';
	padding-bottom: 100%;
}

.contenedor-portada .seccion-portada {
	position: relative;
    display: grid;
	cursor: pointer;
	width: 98%;
	margin: 1%;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
	user-select: none;
}

#principal{
    position: fixed;
    width: 42%;
    margin: auto;
	overflow: visible;
}

.contenedor-portada .seccion-portada:after{
	content: '';
	display: block;
	padding-bottom: 100%;
}

.lista {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.lista .seccion {
	position: relative;
    display: block;
    padding: 0px;
	cursor: move;
	overflow: hidden;
    margin: 1.25% auto 5.5% auto;
    width: 28.1%;
	padding: 5px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
	user-select: none;
	transition:.7s;
	box-shadow: -4px -3px 7px var(--blanco), 4px 3px 5px var(--negro);
}

.lista .seccion:after{
	content: '';
	display: block;
	padding-bottom: 100%;
	overflow: hidden;
}

.lista .articulo {
	position: relative;
    display: grid;
	cursor: pointer;
	overflow: hidden;
	margin: 10px .5%;
	padding: 5px;
    width: 15.5%;
	min-width: 180px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
	user-select: none;
	transition:.7s;
}

.lista .articulo:after{
	content: '';
	display: block;
	padding-bottom: 100%;
}

.contenedor .articulo img{
    position: absolute;
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.5s;
}

.contenedor .articulo img:hover{
    min-width: 110%;
    max-height: 110%;
}

/* ? Clases para los estilos en los diferentes estados del drag and drop */

.lista .seccion.seleccionado{
	transform: scale(1.01) rotate(1deg);
	box-shadow: 10px 10px 20px rgba(149, 153, 159, .36);
}

.lista .seccion.fantasma{
	visibility: hidden;		
}

.lista .seccion.drag{	
	box-shadow: 10px 10px 20px rgba(149, 153, 159, .36);
	background:  rgba(0,255,0,1);
	opacity: 1 !important;
}
.lista .seccion.fallback {
	opacity: 1 !important;
}

/* ? ------- */

.seccion .foto , .seccion-portada .foto{
	position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;	
	overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
	transition: 1s;
}

.seccion img {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
	transition: 1.5s;
	transform: translateZ(1px);
	image-rendering:-moz-crisp-edges;          /* Firefox        */
	image-rendering:-o-crisp-edges;            /* Opera          */
	image-rendering:-webkit-optimize-contrast; /* Safari         */
	image-rendering:optimize-contrast;         /* CSS3 Proposed  */
	-ms-interpolation-mode:nearest-neighbor;
}

.seccion-portada img{
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
	transition: 1.5s;
}

.seccion .foto figcaption, .seccion-portada .foto figcaption{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
	height: 100%;
}

.titulo{
	font-weight: normal;
    color: white;
	text-shadow: 0px 0px 7px black;
	text-transform: uppercase;	
}

.titulo span{
	font-weight: bold;
    letter-spacing: 1.5px;
}

.contenedor-portada .titulo, .contenedor-portada .subtitulo{
	text-transform: uppercase;	
	font-weight: bold;
    color: white;
	background-color: transparent;
	border-style: dotted;
}
.lista .seccion .foto figcaption .titulo{
	position: absolute;
    top: 15%;
	left: 3%;
	transition: 0.5s;
}

.contenedor-portada .seccion-portada .foto figcaption .titulo, 
.contenedor-portada .seccion-portada .foto figcaption .subtitulo{
	position: relative;
	margin-left: 3%;
	text-shadow: 0px 0px 7px black;
	width: 94%;
	background-color: rgba(0,0,0,0.2);
	backdrop-filter: blur(5px);
}

.contenedor-portada .seccion-portada .foto figcaption .descripcion {
    position: relative;
    margin-left: 3%;
	font-size: 16px;
	background-color: #333;
	color: #fff;
	width: 94%;
	height: 60px;
	padding: 5px 8px;
}

.lista .seccion figcaption p{
	opacity: 0;
	background-color: #333;
	color: #fbfbfb;
	font-size: x-small;
	bottom: 0px;
    top: auto;
    position: absolute;
	padding: 5px;
	transition: 1s;
	opacity: 0;
}

.contenedor-portada .seccion-portada .foto figcaption .inputs{
	position: absolute;
	bottom: 0;
	left: 0;
	top: auto;
}

.contenedor-portada .seccion-portada .foto figcaption .inputs *{
	font-size: calc(.6em + .5vw);
    letter-spacing: calc(.1em + .1vw);
	margin-bottom: 5px;
	padding: 4px 8px;
}

.contenedor-portada #tipo,.contenedor-portada #urlportada{
	width: 94%;
	margin-left: 3%;
}

.menu{
	position: fixed;
	height: 50px;	
	z-index: 9999;
}

.menu img{
	position: relative;
	width: auto;
	height: 100%;
    margin: 0px 5px;
}

.seccion .foto figcaption .titulo {
	font-size: calc(var(--texto-l)/1.2);
}	

.footer {
    position: fixed;
    background-color: white;
    bottom: 0;
    width: 100%;
	margin: 0;
	text-align: center;
	display: flex;
	justify-content: space-evenly;
	font-size: calc(var(--texto-s) /1.5);
    padding: 5px;
}

.footer a{
	text-decoration: none;
	color: #333;
}

.btn{
	width: 100%;
    padding: 8px;
    font-weight: bold;
}

.btn-portada{
    width: 48%;
	margin: 10px auto;
    text-align: center;
    background-color: lightgray;
	cursor: pointer;
	border: none;
	text-decoration: none;
	color: #000;
}

.btn-portada:hover{
    background-color: rgb(230,230,230);
}

#borrar{
	position: absolute;
    width: 50px;
    height: 50px;
    z-index: 50;
	top: -20px;
	right: -20px;
	display: none;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	font-weight: bold;
	color: white;
}

.borrar{
	position: absolute;
    width: 50px;
    height: 50px;
    z-index: 50;
	top: 0px;
	right: 0px;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	font-weight: bold;
	color: white;
	background-image: url('../basura.svg');
	background-size: 95%;	
	background-repeat: no-repeat;	
}

.borrar:hover{
	background-size: 100%;	
}

.resultado{
	position: fixed;
	top: 0;
	left: 0;
    width: 100%;
    height: 100vh;
	background-color: rgba(255,255,255,.3);
	backdrop-filter: blur(3px);
	z-index: 9999;
	display: none;
	justify-content: center;
    align-items: center;
}

.caja-borrar{
	width: 100%;
    background: white;
    max-width: 520px;
	padding: 20px;
	border-radius: 20px;
	text-align: center;
	justify-content: center;
    align-items: center;
}

.caja-borrar *{
	padding: 20px;
}

.caja-btn{
	width: 100%;
	display: flex;	
	justify-content: space-between;
    align-items: center;
}

.caja-btn .btn-ok, .caja-btn .btn-ko{
	width: 48%;
	display: grid;
	justify-content: center;
	align-items: center;
	font-size: x-large;	
	font-weight: bold;
	cursor: pointer;
	border-radius: 10px;
}

.caja-btn .btn-ok:hover, .caja-btn .btn-ko:hover{
	filter: brightness(1.2);	
}

.btn-ko{
	background-color: rgb(200, 0, 0);
	color: white;
}

.btn-ok{
	background-color: rgb(0, 200, 0);
	color: white;
}

#loadgif{
	width: 33%;
	height: auto !important;
	margin: auto;
}

.completo{
	width: 100%;
}

#intro{
	position: fixed;
	top: 0;
	left: 0;
    background-color: rgb(251,251,251);
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99999;
}

#intro video{
	width: 80%;
	max-height: 80vh;
}

#subtitulo{
	position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    color: #FFF;
    padding: 5px 8px;
	font-size: calc(var(--texto-l)/1.2);
}

#btnArticulos{
	display: none;
}

#elementoportada{
	display: none;
}

#loaderPortada{
	position: absolute;
	top: 35%;
	left: 35%;
	width: 30%;
	height: 30%;
	border: 15px solid #999999;
	border-radius: 50%;
	border-left: 15px solid rgb(0, 100, 200);
	animation: 1s rotar linear infinite;
}

@keyframes rotar{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}	
}

@media (max-width: 650px){
	.contenedor{
		margin: 50px 1%;
		width: 98%;
		max-width: 98%;		
	}

	.contenedor-lista {
		padding: 0;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.lista {
		padding: 10px 0px 50px 0px;
	}

	.contenedor-portada {
		display: none;
	}
	
	.contenedor-lista:after {
		content: '';
		padding-bottom: 100%;
	}	

	.lista .seccion {
		display: grid;
		padding: 5px;
		cursor: move;
		margin: 4%;
		min-width: 92%;
	}
	.lista .seccion:after{
		content: '';
		display: block;
		padding-bottom: 100%;
	}	

	.seccion .foto figcaption .titulo {
		bottom: 5%;
		font-size: calc(var(--texto-l)*2);
		top: auto;
	}	
	.footer{
		font-size: var(--texto-s);
	}

	.seccion .foto figcaption p{
		font-size: calc(.5rem + 1.5vw);
		opacity: 1;
		width: 100%;
	}	
	.lista .articulo {
		width: 90%;
	}	
}

@media (min-width: 900px){
	.contenedor {
		width: 90%;	
		min-height: 90vh;
		height: auto;			
		justify-content: space-between;
	}
	.contenedor-lista {
		padding: 0;
		width: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.contenedor-portada {
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.contenedor-lista:after {
		content: '';
		padding-bottom: 100%;
	}
	
	.contenedor-portada:after {
		content: '';
		padding-bottom: 100%;
	}	

	.seccion .foto figcaption .titulo {
		font-size: calc(var(--texto-l)/2);
	}	
}
@media (min-width: 720px) and (orientation: portrait) {
	.contenedor {
		width: 90%;
		height: auto;
		display: flex;
		flex-flow: wrap-reverse;
	}
	.contenedor-lista {
		padding: 0;
		width: 98%;
		margin: auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.contenedor-portada {
		width: 98%;
		padding: 0;
		margin: auto;
		display: flex;
		justify-content: center;
		align-items: center;

	}  
	.lista .articulo {
		width: 24%;
	}	
	#principal {
		position: relative;
		width: 95%;
		margin: auto auto 30px auto;
		overflow: visible;
	}
}
@media screen and (min-width : 1660px){
	.lista .seccion figcaption p{
		font-size: calc(1px + .75vw);
	}
}</pre></body></html>