/* Estilo que se le da a todos los input de las vistas */
input {
	text-transform: uppercase;
}
/* Estilo que se le da a todos los textarea de las vistas */
textarea{
	text-transform: uppercase;
}

/*-------------------------------------------------------------------------------------------------------
	Estilo para que la caja de texto con el nombre txtUrl y txtClave no transforme el texto en mayusculas para que
	no cause confucion al momento de crear las rutas de los archivos.
-------------------------------------------------------------------------------------------------------*/
input[name="txtUrl"], .correo, .cke_source, input[name="txtClave"]{
	text-transform:none;
}

.bg-white{
	background: #FFFFFF;
}

.listado{
	/* min-height:200px; */
}

.seccion__subtitulo{
	font-size: 1.4rem;
}

.seccion__subtitulo i{
    position: absolute;
    right: 1rem;
    top: .7rem;
}

.seccion__subtitulo hr{
	margin-top: 0;
}

.margenes_botones{
	margin-left:3px;
}

.contenedor-cargando{
	position: fixed;
	margin-left: auto;
	margin-right: auto;
	width: 100vw;
	height: 100vh;
	text-align: center;
	overflow-y: auto;
	z-index: 2001;
	top: 0;
	background-color: transparent;
    transition: background-color 1s;
}

.contenedor-cargando-show {
	background-color: rgba(0, 0, 0, 0.6);
}

.contenido-cargando{
	/* background: #FFFFFF; */
	margin-left: auto;
	margin-right: auto;
	width: 500px;
	/* border: 2px solid #e5e5e5; */
    padding: 0px;
	border-radius: 5px;
    margin-top: -300px;
    transition: margin-top 1s ease;
	color: #FFFFFF;
	font-size: 3rem;
}

.contenido-cargando-show {
	margin-top: 20%;
}

.spinner {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1.5s infinite linear;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1) rotate(360deg); }
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

.ui-autocomplete{
	z-index: 1050;
}

.listado {
	display: table;
	width: 100%;
}

.listado th, .listado td {
	/*white-space: nowrap; /* Evita que el contenido haga que las celdas se expandan */
	overflow: hidden; 
	text-overflow: ellipsis; /* Agrega puntos suspensivos si el texto es demasiado largo */
}