html
{
	font-size: 14px;
	position: relative;
	min-height: 100%;
}

@media (min-width: 768px)
{
	html
	{
		font-size: 16px;
	}
}

.field-validation-error
{
	color: #cb2438;
	font-weight: bold;
	margin-bottom: 20px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus
{
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

#accordionSidebar .nav-item .navbar-nav
{
	width: 200px;
}

#accordionSidebar .nav-item .navbar-nav .nav-item .nav-link
{
	word-wrap: break-word;
	width: 200px;
}



footer
{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #C53B3F;
}

.bg-gradient-primary
{
	background-color: #C53B3F;
	background-image: linear-gradient(0deg,#c41217 10%,#C53B3F 100%);
	background-size: cover;
}

/*Botones en Datatables*/
td .btn-action
{
	padding: 3px;
}

#navigation span,
#navigation a
{
	text-decoration: none;
	background-color: transparent;
	font-weight: bold;
	color: #fff;
}

#navigation span
{
	font-weight: 700;
}

#navigation a
{
	font-weight: 400;
}

div.dt-container
{
	padding-right: 50px;
}


.loader-overlay
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #03030382;
	z-index: 9999;
	/*display: flex;*/
	justify-content: center;
	align-items: center;
}

.loader-spinner
{
	width: 50px; 
	height: 50px;
	
	/*animation: spin 1s linear infinite;*/
}



@keyframes spin
{
	0%
	{
		transform: rotate(0deg);
	}

	100%
	{
		transform: rotate(360deg);
	}
}
