.factura_contenedor{
	width: 90%;
	max-width: 1400px;
	margin: 20px auto;



	h4{
		color: green;
		padding-bottom: 10px;
	}

	i{
		padding-right: 5px;
	}


	p{
		font-size: 12px;
	}


	.buton_metodo{
		display: inline-block;
		padding: 5px 10px;
		background-color: green;
		border-style: none;
		margin: 5px;
		color: white;
	}

	.buton_send{
		width: 100%;
		padding: 10px 20px;
		border-style: none;
		background-color: grey;
		color: white;
		cursor: none;
		transition: 0.2s;
	}


	.buton_send_on{
		background-color: green;
		cursor: pointer;
	}



	.scroll{
		overflow-y: scroll;
		height: 86vh;
		max-height: 720px;
	}

	.orden_contenedor{
		margin: 0; padding: 0;
		padding-top: 10px;
		border-bottom: 1px solid black;
		cursor: pointer;
		opacity: 0.6;

	}


	.orden_contenedor:hover{
		opacity: 1;
	}



	.breadcomb-list{
		margin-bottom: 10px;
		padding-bottom: 5px;
	}


	.tabla_metdo_pago{
		margin: 15px 0;
		width: 100%;
		overflow: hidden;
		box-sizing: border-box;

		.fila{
			width: 100%;
			box-sizing: border-box;


			input{
				width: 90%;
				margin: 5px 10px;
				padding: 5px 0;
				border: 0px;
				border-bottom: 0.5px solid black;
			}
		}
	}


	.contenedor_titulo{
		width: 100%;
		background-color: green;
		margin: 10px 0;

		h5{
			padding: 10px 20px;
			color: white;
		}
	}


// factura_contenedor
}




.filas_metodos{
	padding: 5px 0;


	.delete_fila{
		cursor: pointer;
	}	

}





.contenedor_opciones_metodo{
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(black, 0.6);
	z-index: 100000000;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: center;
	display: none;
	transition: 0.2s;


	.contenedor_opciones{
		width: 90%;
		max-width: 500px;
		padding: 20px;
		background-color: white;

		h4{
			text-align: center;
			margin: auto;
			padding-bottom: 10px;
		}


		.contenedor_inputs_metodo{
			padding-top: 10px;
		}

	
		.btn{
			width: 100%;

			i{
				padding-right: 5px;
			}
		}

	}

// contenedor_opciones_metodo
}


.contenedor_opciones_metodo_on{
	display: flex;
}




.descripcion{
	padding-top: 15px!important;
	border-bottom: 0.5px solid green!important;
}