* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #E3E5EB;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contenedor {
	width: 100%;
	max-width: 1200px;
}

.contenedor-lista {
	background: #F3F5FA;
	box-shadow: 0px 0px 20px rgba(82, 84, 87, 0.16);
	border-radius: 10px;
}


.lista {
	width: 100%;
}

.lista .persona {
	background: #fff;
	display: grid;
	grid-template-columns: auto 1fr 1fr 1fr;
	align-items: center;
	padding: 10px;
	border-radius: 10px;
	margin-bottom: 20px;
	float: left;
	width: 25%;
	border-color: rgb(228, 227, 227);
	border-style: solid;
}
.navBtn {
	border-style: solid;
	border-width: 0.1mm;
	border-radius: 10px;
	background-color: white;
}
.navigationArrows {
	width: 25%;
	background-color: white;
}

/* ? Clases para los estilos en los diferentes estados del drag and drop */
.lista .persona.seleccionado {
	transform: scale(1.02) rotate(-1deg);
	box-shadow: 0px 0px 20px rgba(149, 153, 159, .16);
}

.lista .persona.fantasma {
	border: 2px dotted #000;
}

.lista .persona .drag {
	opacity: 0;
}
/* ? ------- */



.lista .label {
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 5px;
	color: #5173CF;
}

.lista .dato {
	font-weight: bold;
	font-size: 20px;
}

.lista .persona img {
	width: 100%;
	margin-right: 40px;
	border-radius: 10px;
}