#cargador .modal-content {
	line-height: 1;
}

#cargador.modal {
	z-index: 1075;
}

#cargador.show ~ .modal-backdrop.show:last-child {
	z-index: 1070;
}

.simbolo-cargador {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}

.simbolo-cargador .barra {
	display: inline-block;
	position: absolute;
	left: 6px;
	width: 13px;
	background: #5FAE00;
	animation: animacionCargador 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.simbolo-cargador .barra:nth-child(1) {
	left: 6px;
	animation-delay: -0.24s;
}

.simbolo-cargador .barra:nth-child(2) {
	left: 26px;
	animation-delay: -0.12s;
}

.simbolo-cargador .barra:nth-child(3) {
	left: 45px;
	animation-delay: 0s;
}

@keyframes animacionCargador {
	0% {
		top: 6px;
		height: 51px;
	}
	50%, 100% {
		top: 19px;
		height: 26px;
	}
}