.payment-optionsbar {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	font-size: .8em;
}
.payment-optionsbar .title {
	font-weight: bold;
	text-transform: uppercase;
}
.payment-optionsbar .options {
	display: flex;
	column-gap: 20px;
}
.payment-optionsbar .options .item {
	display: flex;
	align-items: center;
	column-gap: 10px;
	font-family: "Courier Prime";
	font-size: .7em;
}
main + .payment-optionsbar .options .item.klarna .image {
	transform: scale(0.9375);
}
.payment-optionsbar .options .item .image {
	width: 32px;
	height: 32px;
}
.payment-optionsbar .options .item .image img {
	display: block;
	width: 100%;
	border-radius: 3px;
}

.product_column.second .payment-optionsbar {
    width: 100%;
    flex-direction: column;
    row-gap: 10px;
    margin-top: 40px;
}
.product_column.second .payment-optionsbar .options {
    flex-direction: column;
    row-gap: 10px;
    margin-top: 10px;
}
.product_column.second .payment-optionsbar .options .item .image {
    width: 22px;
    height: 22px;
}

.payment-optionsbar + p {
    margin-top: 30px;
    font-size: 18px;
}
.payment-optionsbar + p a {
    color: #fff;
    text-decoration: underline;
}
.payment-optionsbar + p a:hover {
    text-decoration: none;
}

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

	.payment-optionsbar {
		flex-direction: column;
		row-gap: 10px;
	}
	.payment-optionsbar .options {
		flex-direction: column;
		row-gap: 10px;
	}
    main + .payment-optionsbar .options .item.klarna .image {
        transform: none;
    }
	.payment-optionsbar .options .item .image {
		width: 22px;
		height: 22px;
	}

	.product_column.second .payment-optionsbar {
		display: none;
	}

}
