h1 {
	margin: 20px 2px;
}

.checkout-container {
	display: flex;
	flex-direction: column;
	align-items: left;
	box-sizing: border-box;
	overflow: hidden;
	padding: 5px 0;
	width: 90%;
	margin: 0 auto 0 auto;
}

.customer-data-container {
	display: flex;
	flex-direction: column;
	width: 50%;
	padding: 50px 25px 0 25px;
}

.customer-data-inputs {
	border: 1px solid black;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	margin-top: 40px;
	height: 190px;
}

.show-cont {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.payment-method-container {
	border: 1px solid black;
	height: 110px;
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	border-radius: 8px;
	padding: 10px 10px;
	margin: 20px 0 20px 0;
	background-color: #442dd2;
}

.single-payment {
	border: 1px solid #fff;
	height: 60px;
	width: 140px;
	border-radius: 8px;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	background-color: #442dd2;
	color: white;
	font-size: 15px;
	cursor: pointer;
	margin: 2px 2px;
}

.single-payment:hover {
	transition-duration: .3s;
	background-color: #ffffff;
	color: #442dd2;
}

.single-payment-active {
	transition-duration: .3s;
	background-color: #ffffff;
	color: #442dd2;
}

.single-payment-active:hover {
	background-color: #eae6fc;
}

.choose-bank-container {
	display: none;
	width: 90%;
	text-align: center;
}

.select-bank-dropdown {
	width: 50%;
	background-color: #EFEFEF;
}

.banks-container {
	display: none;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	padding-top: 16px;
	align-items: flex-start;
}

.single-bank {
	height: 100px;
	border: 1px solid #f5f5f5;
	margin: 0 16px 16px 0;
	width: 100px;
	display: flex;
	box-shadow: 0 1px 2px rgb(15 26 42 / 8%);
	background-color: #fff;
	border-radius: 20px;
	padding: 12px;
	cursor: pointer;
}

.single-bank:hover {
	background-color: #f7f7f7;
}

.single-bank-active {
	transition-duration: .2s;
	background-color: #bee6ff !important;
}

.single-bank img {
	max-width: 100%;
	max-height: 26px;
	margin: auto;
	pointer-events: none;
}

.card-container {
	display: none;
	padding-top: 16px;
	text-align: center;
}

.single-card {
	height: 200px;
	border: 1px solid #f5f5f5;
	margin: 16px 16px 16px 0;
	width: 200px;
	display: flex;
	box-shadow: 0 1px 2px rgb(15 26 42 / 8%);
	background-color: #fff;
	border-radius: 20px;
	padding: 12px;
	cursor: pointer;
}

.single-card:hover {
	background-color: #f7f7f7;
}

.single-card-active {
	transition-duration: .2s;
	background-color: #bee6ff !important;
}

.single-card img {
	max-width: 100%;
	max-height: 26px;
	margin: auto;
	pointer-events: none;
}

.blik-container {
	display: none;
}

.hire-purchase-container {
	display: none;
}

.bnpl-container {
	display: none;
}

.show {
	display: flex;
}

.showblock {
	display: block;
}

@media only screen and (max-width: 810px) {
	.payment-method-container {
		display: flex;
		flex-direction: column;
		height: auto;
	}
}