p#empresa {
    top: 0 !important;
    display: flex;
    position: absolute;
    color: yellow;
    right: 0 !important;
}
.us_brand.full_screen img {
    width: 20% !important;
	margin-bottom: -2em;
    margin-top: -2em;
	padding: 0px !important;
}

.us_menu_mobile_wrapper .us_brand img {
    width: 40vw;
    margin-left: 25vw;
}

.botonera {
	margin-left:20%;
	margin-top:5%;
}

.boton_inicio {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 115px;
	height: 115px;
	background: linear-gradient(180deg, #3498db, #2980b9);
	color: #fff;
	font-weight: bold;
	border-radius: 12px;
	text-align: center;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	font-size: 13px;
	margin-top:10px;
}

.boton_inicio:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Shine effect */
.boton_inicio::before {
	content: '';
	position: absolute;
	top: -100%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		120deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.4) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	transform: rotate(25deg);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.boton_inicio:hover::before {
	animation: shine 0.8s forwards;
	opacity: 1;
}


input#id_ord {
    width: 115px !important;
    height: 55px;
    display: flex;
    flex-direction: column;
}

form#busq_orden {
    display: inline-flex;
	flex-direction: column;
	vertical-align: bottom;
}

button#busca_orden {
	width: 115px !important;
    height: 57.5px;
	background: linear-gradient(180deg, #3498db, #2980b9);
	color: #fff;
	font-weight: bold;
	border-radius: 12px;
}

button#busca_orden:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

@keyframes shine {
	0% {
		transform: translateX(-150%) rotate(25deg);
	}
	100% {
		transform: translateX(150%) rotate(25deg);
	}
}

.titulo {
    top: 8vh !important;
    position: absolute;
    color: white;
    left: 40vw;
}

.ui-menu {
	background-color: gray;
	width: 50%!important;
	margin-top: 5vh!important;
}

.ui-menu-item div {
	font-size:1.25rem!important;
}
.ui-menu-item div:hover {
	cursor:pointer!important;
}
/* Optional: remove link underline and adjust alignment */
a#nueva_orden {
	text-decoration: none;
	display: inline-block;
}

.contenedor_formulario {
	width:60vw;
	margin:1em;
}

.tabla_formulario {
	width: 100%;
}

input#id_orden {
    text-align: center;
}

.modal-dialog2, .modal-dialog3 form {
    width: 90%;
    margin: 5%;
}

.tabla_lista, .tr_lista, .td_lista, .th_lista {
	border: 1px solid lightgray;
	border-collapse: collapse;
	padding: 3px;
}
/*CSS MOBILE*/

@media only screen and (max-width: 600px) {
	.botonera {
		margin-left:1%;
	}
	
	.contenedor_formulario {
		width:95vw;
	}
	
	.titulo {
		left: 15vw;
        top: 17vh !important;
	}
	
	.tabla_lista {
		font-size: .8em !important;
	}
	
	.hide {
		display: none;
	}

}