/* ==========================================================
   PANEL ADMINISTRACIÓN
   ========================================================== */

/* Tarjeta del mantenedor */

.permanencia-card {

	border: 1px solid #dee2e6;

	border-radius: .375rem;

	background: #fff;

	padding: 25px;

	height: 100%;

	text-align: center;

	transition: all .2s ease;

}

/* Efecto al pasar el mouse */

.permanencia-card:hover {

	border-color: #b22222;

	box-shadow: 0 .5rem 1rem rgba(0,0,0,.10);

}

/* Icono */

.permanencia-card-icon {

	font-size: 48px;

	color: #3C3C3C;

	margin-bottom: 15px;

}

/* Título */

.permanencia-card h5 {

	color: #0d6efd;

	font-weight: bold;

}

/* Descripción */

.permanencia-card p {

	color: #6c757d;

	min-height: 50px;

}