a:link, a:visited, a:hover, a:active{
  text-decoration: none !important;
}

.rounded, .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-radius:8px !important;
}

.rounded-start,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
}

.rounded-end,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.rounded-top,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.rounded-bottom,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.backgroundImage{
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.loginLogo{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 130px;
	margin: 0 auto;
	overflow: hidden;
}

.loginLogo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.loginLogoImg{
	max-width: 220px;
	width: 100%;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
}

.form-check-input{
  width: 1.2em !important;
  height: 1.2em !important;
}

.form-check-input:active,.form-check-input:focus,.btn{
  outline:0 !important;
  box-shadow: none !important;
}

.list-group-item {
  border:0px !important;
}

input.showQuantity::-webkit-inner-spin-button,
input.showQuantity::-webkit-outer-spin-button{
	-webkit-appearance: none;
	margin: 0;
}

/*=============================================
Botones de Acciones (Editar / Eliminar) de las
tablas, unificados en todo el sistema: cuadrado
amarillo para editar, cuadrado rojo para
eliminar (mismo estilo que ya tenían Productos y
Vendedores). Se apuntan por el ícono (bi-pencil* /
bi-trash*) para cubrir tanto los botones/enlaces
que envuelven al ícono como los que usan el
ícono mismo como botón, sin depender de que cada
pantalla use una clase particular. Se limita a
celdas de tabla (td) para no tocar botones de
cabecera/toolbar que también usan estos íconos
(ej. "Borrar por Fechas", eliminación masiva).
=============================================*/

td .btn:has(> i.bi-pencil-square),
td .btn:has(> i.bi-pencil),
td .btn:has(> i.bi-pencil-fill),
td i.btn.bi-pencil-square,
td i.btn.bi-pencil,
td i.btn.bi-pencil-fill{
	background-color: #ffc107 !important;
	color: #000 !important;
	border: 0 !important;
	border-radius: 8px !important;
	width: 34px !important;
	height: 34px !important;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
}

td .btn:has(> i.bi-trash),
td .btn:has(> i.bi-trash-fill),
td i.btn.bi-trash,
td i.btn.bi-trash-fill{
	background-color: #dc3545 !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 8px !important;
	width: 34px !important;
	height: 34px !important;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
}

td:has(> .btn > i.bi-pencil-square, > .btn > i.bi-pencil, > .btn > i.bi-pencil-fill, > .btn > i.bi-trash, > .btn > i.bi-trash-fill, > i.btn.bi-pencil-square, > i.btn.bi-pencil, > i.btn.bi-trash){
	white-space: nowrap;
}

