/* ============================= */
/* CHECKOUT PAGE */
/* ============================= */

.checkout {
	padding: 120px 0px 60px 0px;
}

.checkout__title {
	margin: 0 0 16px;
}

.checkout__notice {
	display: none;
	padding: 12px 14px;
	border: 1px solid #eee;
	border-radius: 14px;
	background: #fff;
	margin-bottom: 16px;
}

.checkout__grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 18px;
}

/* ============================= */
/* CARD */
/* ============================= */

.checkout-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 16px;
	padding: 18px;
}

.checkout-card__title {
	margin: 0 0 14px;
	font-size: 18px;
}

/* ============================= */
/* TOTAL */
/* ============================= */

.checkout-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #eee;
	padding-top: 14px;
	margin-top: 14px;
}

.checkout-total__label {
	color: #666;
}

.checkout-total__value {
	font-weight: 700;
	font-size: 18px;
}

/* ============================= */
/* FORM */
/* ============================= */

.checkout-form {
	display: grid;
	gap: 12px;
}

.form-field {
	display: grid;
	gap: 6px;
}

.form-field span {
	font-size: 13px;
	color: #555;
}

.form-field input,
.form-field textarea,
.form-field select {
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 12px;
	font-size: 14px;
	transition: border .2s ease, box-shadow .2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
	outline: none;
	border-color: #111;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, .05);
}

.form-field textarea {
	resize: vertical;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 920px) {
	.checkout__grid {
		grid-template-columns: 1fr;
	}
}