.bloque-metodos-pago {
	display: flex;
    flex-direction: column;
    row-gap: var( --gap-xl );
    column-gap: var( --gap-m );
	align-items: center;
}

.slider {
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
}
.slider > div {
	width: calc(100% * (1/6));
    height: 90px;
    padding: 0 var(--space-m);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 750px) {
	.slider {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-points-x: repeat(300px);
		scroll-snap-type: mandatory;
		flex-wrap: nowrap;
		justify-content: normal;
	}
	.slider > div {
		flex-shrink: 0;
		width: 30%;
		max-width: 120px;
		height: 60px;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0 var(--space-xs);
	}
}