body {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	/* overflow-x: hidden; Oculta el scrollbar horizontal */
}

.td-eliminar {
	padding-left: 10px;
}

.btn-eliminar {
	background: transparent;
	border: none;
	cursor: pointer;
	color: #dc3545;
	font-size: 18px;
	transition: transform 0.2s ease, color 0.2s ease;
}

.btn-eliminar:hover {
	color: #a71d2a;
	transform: scale(1.1);
}

.btn-eliminar i {
	pointer-events: none;
}


.create-form-group {
	display: flex;
	flex-wrap: wrap;
}

.create-form-label {
	font-weight: bold;
	margin-bottom: 5px;
	color: #333;
	margin-top: 10px;
}

.form-control,
.create-form-inp,
.create-form-select {
	box-sizing: border-box;
	width: 100%;
	height: 35px;
	border: 1px solid #234e75;
	border-radius: 5px;
	font-size: 15px;
	transition: border-color 0.3s;
}

.text-area-form {
	width: 100%;
	height: 35px;
	border: 1px solid #234e75;
	border-radius: 5px;
	font-size: 15px;
	transition: border-color 0.3s;
}

.form-control:focus,
.create-form-inp:focus,
.create-form-select:focus {
	box-shadow: 0px 0px 20px rgba(0, 11, 140, 0.3);
	outline: none;
}

.binding {
	color: red;
}

.btn-crear {
	background-color: #234e75;
	color: white;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s;
	margin: 10px;
}

.btn-crear:hover {
	background-color: #ffdd74;
}

@media (max-width: 600px) {
	.create-form-group {
		flex-direction: column;
	}
}

.btn_nuevoVe {
	display: inline-block;
	/* Asegura que el contenedor se ajuste al contenido */
	padding: 5px;
}

.divBtnMenuHorinzedt {
	background-color: #12a14b;
	font-size: 12px;
	border-radius: 3px;
	height: 32px;
	/* box-shadow: 10px 5px 20px rgba(0, 11, 140, 0.3); */
}

.container-sm {
	/* background-color: #f1f1f1; */
	justify-content: center;
	align-items: center;
	width: 100%;
	/* Altura completa de la vista */
	border-radius: 10px;
	/* box-shadow: 5px 10px 15px rgba(0, 11, 140, 0.3); */
	color: black;
	margin: auto;
}

.form-group {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	/* Centra horizontalmente los elementos dentro del grupo */
	margin-bottom: 15px;

}


/* .form-control{
	width: 100%;
	height: 35px;
	border: 1px solid #213259;
	border-radius: 5px;
	font-size: 15px;
	
} */

.btn-outline-dark {
	display: flex;
	background-color: #234e75;
	/* Fondo del botón */
	color: white;
	/* Color del texto */
	width: 110px;
	height: 30px;
	border-radius: 20px;
}


.circle {
	margin-top: 65px;
	/* Espaciado superior */
	background-color: #234e75;
	/* Color de fondo */
	width: 155px;
	/* Ancho del círculo */
	height: 155px;
	/* Altura del círculo */
	border-radius: 50%;
	/* Círculo perfecto */
	color: white;
	/* Color del texto */
	text-decoration: none;
	/* Sin subrayado en el enlace */
	font-size: 18px;
	/* Aumentar el tamaño de la fuente */
	display: flex;
	/* Usar flexbox para centrar contenido */
	justify-content: center;
	/* Centrar horizontalmente */
	align-items: center;
	/* Centrar verticalmente */
	box-shadow: 5px 5px 20px rgb(2, 2, 2);
	/* Sombra */
	cursor: pointer;
	/* Cambiar el cursor al pasar por encima */
}

label {
	font-weight: bold;
	/* Texto de etiquetas en negrita */
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	background-color: #fff;
	margin: 6% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}



.requiredLabel {
	color: red;
}

#titulo {
	font-size: 28px;

}

#contenedor {
	width: auto;
	padding: 1%;
	height: auto;
	border-radius: 10px;
	border-top: 2px solid #234e75;
	border-bottom: 2px solid #234e75;
}


#linea {
	border: 1px solid #234e75;
}





.titulos {
	font-size: 12px;
	font-weight: 600;
	margin: 0;
	color: #234e75;
	text-align: left !important;
	text-align: right;
}




#registrar,
#consultar,
#guardar {
	background-color: #234e75;
	border: none;
	color: white;
	margin: 1em;
	padding: 0.5% 1%;
	/*border-radius: 5px;*/
	font-synthesis: 12px;
}

.boton {
	background-color: #234e75;
	border: none;
	color: white;
	margin: 1em;
	padding: 0.5% 3%;
	border-radius: 3px;
	font-synthesis: 12px;
	width: 70px !important;
	height: 40px !important;
}

#loading-div-background {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 1;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-color: rgba(110, 110, 110, .5);
}

#loading-div {
	text-align: center;
	color: #202020;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -50px;
	margin-top: -100px;
}

.loader {
	font-size: 90px;
	text-indent: -9999em;
	overflow: hidden;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	position: absolute;
	z-index: 1;
	margin: 20% 35%;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load6 1.7s infinite ease;
	animation: load6 1.7s infinite ease;
}

@-webkit-keyframes load6 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		box-shadow: 0 -0.83em 0 -0.4em #000, 0 -0.83em 0 -0.42em #000, 0 -0.83em 0 -0.44em #000, 0 -0.83em 0 -0.46em #000, 0 -0.83em 0 -0.477em #000;
	}

	5%,
	95% {
		box-shadow: 0 -0.83em 0 -0.4em #000, 0 -0.83em 0 -0.42em #000, 0 -0.83em 0 -0.44em #000, 0 -0.83em 0 -0.46em #000, 0 -0.83em 0 -0.477em #000;
	}

	10%,
	59% {
		box-shadow: 0 -0.83em 0 -0.4em #000, -0.087em -0.825em 0 -0.42em #000, -0.173em -0.812em 0 -0.44em #000, -0.256em -0.789em 0 -0.46em #000, -0.297em -0.775em 0 -0.477em #000;
	}

	20% {
		box-shadow: 0 -0.83em 0 -0.4em #000, -0.338em -0.758em 0 -0.42em #000, -0.555em -0.617em 0 -0.44em #000, -0.671em -0.488em 0 -0.46em #000, -0.749em -0.34em 0 -0.477em #000;
	}

	38% {
		box-shadow: 0 -0.83em 0 -0.4em #000, -0.377em -0.74em 0 -0.42em #000, -0.645em -0.522em 0 -0.44em #000, -0.775em -0.297em 0 -0.46em #000, -0.82em -0.09em 0 -0.477em #000;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		box-shadow: 0 -0.83em 0 -0.4em #000, 0 -0.83em 0 -0.42em #000, 0 -0.83em 0 -0.44em #000, 0 -0.83em 0 -0.46em #000, 0 -0.83em 0 -0.477em #000;
	}
}

@keyframes load6 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		box-shadow: 0 -0.83em 0 -0.4em #000, 0 -0.83em 0 -0.42em #000, 0 -0.83em 0 -0.44em #000, 0 -0.83em 0 -0.46em #000, 0 -0.83em 0 -0.477em #000;
	}

	5%,
	95% {
		box-shadow: 0 -0.83em 0 -0.4em #000, 0 -0.83em 0 -0.42em #000, 0 -0.83em 0 -0.44em #000, 0 -0.83em 0 -0.46em #000, 0 -0.83em 0 -0.477em #000;
	}

	10%,
	59% {
		box-shadow: 0 -0.83em 0 -0.4em #000, -0.087em -0.825em 0 -0.42em #000, -0.173em -0.812em 0 -0.44em #000, -0.256em -0.789em 0 -0.46em #000, -0.297em -0.775em 0 -0.477em #000;
	}

	20% {
		box-shadow: 0 -0.83em 0 -0.4em #000, -0.338em -0.758em 0 -0.42em #000, -0.555em -0.617em 0 -0.44em #000, -0.671em -0.488em 0 -0.46em #000, -0.749em -0.34em 0 -0.477em #000;
	}

	38% {
		box-shadow: 0 -0.83em 0 -0.4em #000, -0.377em -0.74em 0 -0.42em #000, -0.645em -0.522em 0 -0.44em #000, -0.775em -0.297em 0 -0.46em #000, -0.82em -0.09em 0 -0.477em #000;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		box-shadow: 0 -0.83em 0 -0.4em #000, 0 -0.83em 0 -0.42em #000, 0 -0.83em 0 -0.44em #000, 0 -0.83em 0 -0.46em #000, 0 -0.83em 0 -0.477em #000;
	}
}




/*---------------Fin Contenido----------*/



@media (min-width:1200px) {}

/*---------------fin escritorio----------*/



/*---------------inicio portatil--------------*/


@media (max-width: 1199px) and (min-width: 992px) {}


/*---------------fin portatil------------*/



/*---------------tableta--------------*/



@media (max-width:991px) and (min-width: 768px) {}

/*-------------fin tableta--------------*/




/*---------------telefono--------------*/

@media (max-width: 767px) {}


@media (max-width: 500px) {}

/*-------------fin telefono------------*/