.payment-options {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 600px;
	margin: 0 auto;
}

.payment-options div {
	width: calc(25% - 30px);
	margin: 15px;
	text-align: center;
}

.payment-options h4 {
	margin: 15px 0;
	font-size: 25px;
	color: var(--main-color);
}

.warning {
	background-color: var(--orange);
	color: black;
	text-align: center;
	margin-top: 60px;
}

.warning p {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
	padding: 10px 0;
}

.voucher {
	text-decoration: underline white;
	cursor: pointer;
	transition: all 0.5s;
}

.voucher:hover {
	text-decoration: underline;
}

table {
	width: 100%;
	border-collapse: collapse;
}

table tr {
	width: 100%;
}

table tr:nth-of-type(odd) {
	background-color: #e5e5e5;
}

table td {
	padding: 20px 0;
}

table p {
	padding: 20px 0;
	margin: 0;
	font-weight: 500;
	color: #333;
}

table tr td:nth-of-type(1) {
	width: 50%;
	position: relative;
}

table tr td:nth-of-type(1) p {
	width: 200px;
	padding-right: 10%;
	color: var(--main-color);
	font-weight: 700;
	font-size: 16px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

table tr td:nth-of-type(2) {
	width: 120px;
}

table tr td:nth-of-type(3) {
	width: 120px;
}

table button {
	font-size: 16px;
	font-weight: 700;
	padding: 6px 20px;
	box-shadow: 5px 5px 15px 3px rgb(0, 0, 0, 0.3);
	background-color: var(--main-color);
	color: white;
	transition: all 0.5s;
}

table button:hover {
	background-color: var(--orange);
}

.additional_info {
	margin: 25px 10%;
	text-align: center;
	color: var(--orange);
	font-weight: bold;
}

@media (max-width: 800px) {
	table tr td:nth-of-type(1) {
		width: 100%;
		padding: 20px 0 0 0;
	}

	table tr td:nth-of-type(1) p {
		width: 100%;
		text-align: center;
		position: relative;
		padding: 0;
		font-size: 18px;
	}

	table tr td:nth-of-type(2) {
		width: 120px;
		text-align: center;
	}

	table tr td:nth-of-type(3) {
		width: 120px;
		text-align: center;
	}

	table tr td:nth-of-type(4) {
		width: 100%;
		text-align: center;
		padding-bottom: 20px;
	}

	table tr {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	table td {
		padding: 10px 0;
	}

	table p {
		padding: 15px 0;
	}
}

@media (max-width: 600px) {
	.payment-options div {
		min-width: 90px;
		width: 100px;
	}

	.payment-options div img {
		height: 45px;
	}

	.payment-options h4 {
		font-size: 20px;
	}

	.payment-options {
		justify-content: center;
	}

	.warning p {
		font-size: 16px;
		width: calc(100% - 30px);
		margin: 0 15px;
	}
}

@media (max-width: 500px) {
	.payment-options {
		max-width: 380px;
	}
}

@media (max-width: 370px) {
	.payment-options div {
		min-width: 60px;
		margin: 10px;
	}

	.payment-options div img {
		height: 35px;
	}

	.payment-options h4 {
		font-size: 18px;
	}

	.payment-options {
		justify-content: space-evenly;
	}
}
