.loader {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}
.loader div {
	position: absolute;
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
	animation: loader 1.2s linear infinite;
}
.loader div:nth-child(1) {
	animation-delay: 0s;
	top: 37px;
	left: 66px;
}
.loader div:nth-child(2) {
	animation-delay: -0.1s;
	top: 22px;
	left: 62px;
}
.loader div:nth-child(3) {
	animation-delay: -0.2s;
	top: 11px;
	left: 52px;
}
.loader div:nth-child(4) {
	animation-delay: -0.3s;
	top: 7px;
	left: 37px;
}
.loader div:nth-child(5) {
	animation-delay: -0.4s;
	top: 11px;
	left: 22px;
}
.loader div:nth-child(6) {
	animation-delay: -0.5s;
	top: 22px;
	left: 11px;
}
.loader div:nth-child(7) {
	animation-delay: -0.6s;
	top: 37px;
	left: 7px;
}
.loader div:nth-child(8) {
	animation-delay: -0.7s;
	top: 52px;
	left: 11px;
}
.loader div:nth-child(9) {
	animation-delay: -0.8s;
	top: 62px;
	left: 22px;
}
.loader div:nth-child(10) {
	animation-delay: -0.9s;
	top: 66px;
	left: 37px;
}
.loader div:nth-child(11) {
	animation-delay: -1s;
	top: 62px;
	left: 52px;
}
.loader div:nth-child(12) {
	animation-delay: -1.1s;
	top: 52px;
	left: 62px;
}
@keyframes loader {
	0%, 20%, 80%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.5);
	}
}


.div_loader
{
	display: none;
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 2500;
	background: rgba(0, 11, 80, 0.6);
	padding: 20px
}

.div_loader .loader
{
	display: block;
	position: relative;
	width: 50px;
	top: calc(50% - 60px);
	left: calc(50% - 25px);
}

@-webkit-keyframes animate-loading {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.grises img {
	filter: contrast(30%); /* Versión SVG para IE10, Chrome 17, FF3.5, Safari 5.2 and Opera 11.6 */
	-webkit-filter: contrast(30%);
	-moz-filter: contrast(30%);
	-ms-filter: contrast(30%);
	-o-filter: contrast(30%);
	filter: contrast(30%); /* Para cuando es estándar funcione en todos */
	
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.grises img:hover {
	-webkit-filter: contrast(0%);
	-moz-filter: contrast(0%);
	-ms-filter: contrast(0%);
	-o-filter: contrast(0%);
	filter: none;

	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.auth-form__logo 
{
	padding: 2px;
	width: 100%;
	height: auto;
}
.auth-form__social-icons
{
	padding-right: 0;
	padding-left: 0;
}
.auth-form__social-icons li
{
	list-style: none;
	display: inline-block;
}

.auth-form__social-icons li a 
{
	padding: 0 .75rem;
	font-size: 1.25rem;
	color: #cacedb;
	transition: color 250ms cubic-bezier(.27,.01,.38,1.06);
}

.auth-form__social-icons li a:hover
{
	color:red;
}
.auth-wrapper .card
{
	border-radius: 30px;
}

.btn-round {
	border-radius: 20px;
}

.round-form {
	border-radius: 500px;
	-webkit-border-radius: 500px;
}

.w_alert
{
	background-color: transparent;
	width: 100%;
	position: absolute;
	margin-top: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99999;
}

.requerido
{
	color: red !important;
	font-weight: bold;
}

.alert {
	position: absolute;
	min-width: 10px;
	padding: 0.75rem 1.25rem;
	margin-bottom: 1rem;
	border: none;
	border-radius: 50px;
	z-index: 1060;
	-webkit-box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.22); 
	box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.22);
}

.alert-link {
	font-weight: 500; 
}

.alert-dismissible .close {
	top: 0;
	right: 0;
	padding: 0.75rem 1.25rem;
	transition: all 250ms cubic-bezier(0.27, 0.01, 0.38, 1.06); 
}
.alert-dismissible .close:hover {
	cursor: pointer; 
}

.alert-primary {
	color: white;
	background-color: #344CFA; 
}
.alert-primary .alert-link {
	color: white; 
}

.alert-secondary {
	color: white;
	background-color: #5A6169; 
}
.alert-secondary .alert-link {
	color: white; 
}

.alert-success {
	color: white;
	background-color: #17C666; 
}
.alert-success .alert-link {
	color: white; 
}

.alert-info {
	color: white;
	background-color: #00b8d8; 
}
.alert-info .alert-link {
	color: white; 
}

.alert-warning {
	color: white;
	background-color: #ffb400; 
}
.alert-warning .alert-link {
	color: white; 
}

.alert-danger {
	color: white;
	background-color: #EA4D4D; 
}
.alert-danger .alert-link {
	color: white; 
}

.alert-light {
	color: white;
	background-color: #FBFBFB;
	color: #212529; 
}
.alert-light .alert-link {
	color: white; 
}
.alert-light .alert-link {
	color: #212529; 
}

.alert-dark {
	color: white;
	background-color: #212529; 
}
.alert-dark .alert-link {
	color: white; 
}

.b-brand img{
	width: 100%;
}

div.dataTables_wrapper div.dataTables_info{
	white-space: normal !important;
}

.list-group-item-bg:hover, .list-group-item-bg:focus {
	background-color: #bdbec0;
}

.btn-float-right {
	position: relative;
	max-width: 10px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.main-footer {
	position: fixed;
	height: 2rem;
	bottom: 0;
	width: calc(100% - 280px);
	z-index: 1025;
}
.main-footer .copyright {
	color: #818EA3; 
}
@media (max-width: 767.98px) 
{
	.main-footer {
		display: none !important;
		height: auto; 
	}
	.main-footer .nav {
		width: 100%;
		display: block;
		border-bottom: 1px solid #e1e5eb;
		padding-bottom: 0.75rem; 
	}
	.main-footer .copyright {
		display: inline-block;
		width: 100%;
		padding: 1rem;
		text-align: center; 
	} 
}

body {
	color: #000 !important;
}

::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: rgba(68, 105, 238, 0.5);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: rgba(20, 61, 150, 0.5); 
}

input[type="radio"]
{
	display: none;
}
.label_radio_pago
{
	position: relative;
	border-radius: 30px;
	padding: 5px 5px;
	display: flex;
	align-items: center;
	height: 2rem;
	justify-content: center;
}

input[type="radio"]:checked + .label_radio_pago
{
	border: 2px solid #344CFA;
	background-color: rgba(20, 46, 150, 0.1);
	color: white;
}

.img_metodo {
	height: 1.5rem;
	width: 100%;
}

.img_metodo_div {
	height: 1rem;
	width: 100%;
}

.image-upload > input
{
	display: none;
}

.image-upload img
{
	display: block !important;
	width: 80px;
	cursor: pointer;
}