.checkout {
	display: flex;
	gap: 26px 2.13%;
	flex-wrap: wrap;
}

.checkout .checkout-info {
	width: 65.92%;
}

.checkout .checkout-info h1 {
	margin-bottom: 52px;
}

.checkout .checkout-info .checkout-info__address {
	padding-bottom: 32px;
	margin-bottom: 32px;
	border-bottom: 4px solid #e0e0e0;
}

.checkout .checkout-info .checkout-info__address,
.checkout .checkout-info .checkout-info__program {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 1.98%;
	justify-content: space-between;
	align-items: center;
}

.checkout .checkout-info h3 {
	width: 100%;
	margin-bottom: 8px;
}

.checkout .checkout-info .form-group {
	width: 100%;
}

.checkout .checkout-info .form-group.half {
	width: 49.01%;
}

.checkout .checkout-info .form-group input,
.checkout .checkout-info .form-group select {
	margin-top: 8px;
}

.checkout .checkout-info .form-group input:not(:last-of-type) {
	margin-bottom: 16px;
}

.checkout .checkout-total {
	width: 31.95%;
	padding: 32px;
	border-radius: 16px;
	background-color: #f7f7f8;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.checkout .checkout-total .checkout-total__details {
	padding-bottom: 24px;
	border-bottom: 1px solid #6c7581;
}

.checkout .checkout-total .checkout-total__details .checkout-total__details-product {
	padding-bottom: 16px;
	border-bottom: 1px solid #6c7581;
}

.checkout .checkout-total .checkout-total__details .checkout-total__details-product,
.checkout .checkout-total .checkout-total__details .checkout-total__details-subtotal,
.checkout .checkout-total .checkout-total__details .checkout-total__details-tax,
.checkout .checkout-total .checkout-total__details .checkout-total__details-total {
	display: flex;
	margin-bottom: 16px;
	gap: 8px;
}

.checkout .checkout-total .checkout-total__details .checkout-total__details-product p,
.checkout .checkout-total .checkout-total__details .checkout-total__details-subtotal p,
.checkout .checkout-total .checkout-total__details .checkout-total__details-tax p,
.checkout .checkout-total .checkout-total__details .checkout-total__details-total p {
	width: 50%;
	margin-bottom: 0;
}

.checkout .checkout-total .checkout-total__details .checkout-total__details-product p:last-child,
.checkout .checkout-total .checkout-total__details .checkout-total__details-subtotal p:last-child,
.checkout .checkout-total .checkout-total__details .checkout-total__details-tax p:last-child,
.checkout .checkout-total .checkout-total__details .checkout-total__details-total p:last-child {
	font-weight: 700;
	color: #094676;
}

.checkout .checkout-total .checkout-order {
	margin-top: auto;
}

@media only screen and (max-width: 1024px) {
	.checkout .checkout-info h1 {
		margin-bottom: 46px;
	}
	
	.checkout .checkout-info .checkout-info__address,
	.checkout .checkout-info .checkout-info__program {
		gap: 21px 1.98%;
	}

	.checkout .checkout-info h3 {
		margin-bottom: 7px;
	}
	
	.checkout .checkout-total {
		gap: 21px;
		padding: 28px;
	}
	
	.checkout .checkout-total .checkout-total__details {
		padding-bottom: 21px;
	}
	
	.checkout .checkout-total .checkout-total__details .checkout-total__details-product {
		padding-bottom: 14px;
	}

	.checkout .checkout-total .checkout-total__details .checkout-total__details-product,
	.checkout .checkout-total .checkout-total__details .checkout-total__details-subtotal,
	.checkout .checkout-total .checkout-total__details .checkout-total__details-tax,
	.checkout .checkout-total .checkout-total__details .checkout-total__details-total {
		margin-bottom: 14px;
	}
}

@media only screen and (max-width: 767px) {
	.checkout .checkout-info,
	.checkout .checkout-total {
		width: 100%;
	}
	
	.checkout .checkout-info h1 {
		margin-bottom: 40px;
		text-align: center;
	}
	
	.checkout .checkout-info .checkout-info__address,
	.checkout .checkout-info .checkout-info__program {
		gap: 18px 1.98%;
	}

	.checkout .checkout-info h3 {
		margin-bottom: 6px;
	}
	
	.checkout .checkout-total {
		gap: 18px;
		padding: 24px;
	}
	
	.checkout .checkout-total .checkout-total__details {
		padding-bottom: 18px;
	}
	
	.checkout .checkout-total .checkout-total__details .checkout-total__details-product {
		padding-bottom: 12px;
	}

	.checkout .checkout-total .checkout-total__details .checkout-total__details-product,
	.checkout .checkout-total .checkout-total__details .checkout-total__details-subtotal,
	.checkout .checkout-total .checkout-total__details .checkout-total__details-tax,
	.checkout .checkout-total .checkout-total__details .checkout-total__details-total {
		margin-bottom: 12px;
	}
}

@media only screen and (max-width: 575px) {
	.checkout .checkout-info .form-group.half {
		width: 100%;
	}
}