/** responsive-menu 
	para los moviles 
	se quite de la pantalla
 */
@media ( max-width : 800px) {
	.left-layout {
		display: none;
	}
	#title-app-name {
		display: none;
	}
}

#title-menu-full {
	height: 30px;
}

.no-display {
	display: none;
}

/** Arreglo del ancho de los botones */
input#mensajes-shutdown-component\:form-message-shutdown\:shutdown-duration_input
	{
	width: 80%;
}

/** 
	CSS PAGINA DE ERROR
 */
body {
	margin: 0;
}

.section-error-layout {
	display: grid;
	grid: "header" auto "main" 1fr "footer" auto/1fr;
	height: 100vh;
}

.header-error-layout {
	grid-area: header;
	background: #0077d4;
	font-size: 1.1em
}

.main-error-layout {
	grid-area: main;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.footer-error-layout {
	grid-area: footer;
	height: 30px;
	background: #f5f5f5;
}