/* Payment Methods */
.ns_payment-methods {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-direction: row;
	gap: 8px;
	flex-wrap: wrap;
}

.ns_payment-methods > img,
.ns_payment-methods > a {
	display: inline-block;
	width: auto;
	height: 26px;
	pointer-events: none;
}

.ns_payment-methods > a > img {
	height: 100%;
	width: auto;
}

.ns_payment-methods > img[alt="Scalapay"] + img[alt="Scalapay"] {
	display: none !important;
}

@media only screen and (min-width: 768px) {
	.ns_payment-methods {
		/* max-width: 236px; */
	}
}

@media only screen and (max-width: 1023px) {

	.ns_payment-methods > img,
	.ns_payment-methods > a {
		height: 26px;
	}
}

@media only screen and (max-width: 767px) {
	.ns_payment-methods {
		justify-content: flex-start;
	}

	.ns_payment-methods > img,
	.ns_payment-methods > a {
		height: 26px;
	}
}