/*
Copyright (C) 2021 José Miguel Ortiz

This program is not free software: you may not redistribute and / or modify it under 
the terms of the published License,either the current version or (at your option) any 
later version.

This program gives licensed access in the hope that it will be useful, but WITHOUT
ANY WARRANTY; even without the implied warranty of MERCHANTABILITY or FITNESS FOR A 
PARTICULAR PURPOSE. See the License.

You should have received a copy of the Custom License along with this program. 
Otherwise refer to the LICENCIA.TXT file in the source code of this commercial project.
*/
*, *:before, *:after{
	margin: 0;
	padding: 0;
	outline: 0;
	box-sizing: border-box;
}

.img-resposive{
	position:absolute;
	z-index:1;
	width:100%;
	height:100%;
}

.contenedor_loader{
	background-color: #f3f3f3;
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	transition: all 1.5s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader,
.loader:before,
.loader:after {
	border-radius: 50%;
	width: 2.5em;
	height: 2.5em;
	animation: loader_animacion 1.5s infinite ease-in-out;
}
.loader{
	color: #C3C9CA;
	font-size: 10px;
	position: relative;
	animation-delay: -0.32s;
}
.loader:before,
.loader:after{
	content: '';
	position: absolute;
	top: 0;
}
.loader:before{
	left: -5.5em;
	animation-delay: -0.64s;
}
.loader:after{
	left: 5.5em;
}

table tbody tr td {
    color: #030303!important;
    font-size: 12px;
    font-weight: 500;
}

@keyframes loader_animacion{
	0%,
	80%,
	100%{
		box-shadow: 0 2.5em 0 -1.3em;
	}
	40%{
		box-shadow: 0 2.5em 0 0;
	}	
}
