/*
 * GES Checkout UI - the empty-cart card (the cart dropdown, and the checkout with nothing in the cart).
 * Design: globalesim-web CartView empty state.
 */
.ges-cart-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 32px 20px;
}
.ges-cart-empty__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #e8f5ff;
	color: #0072b8;
}
.ges-cart-empty__title {
	margin: 16px 0 0;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
	color: #0a2a52;
}
.ges-cart-empty__text {
	margin: 6px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: #54708a;
}
.ges-cart-empty .ges-cart-empty__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: 20px;
	padding: 0 24px;
	border-radius: 8px;
	background: #0072b8;
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	transition: background-color 0.15s ease;
}
.ges-cart-empty .ges-cart-empty__btn:hover,
.ges-cart-empty .ges-cart-empty__btn:focus-visible {
	background: #0a2a52;
}

/* On the checkout page: a card on the page ground, the width of the order column. */
.ges-cart-empty-page {
	max-width: 560px;
	margin: 24px auto;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	box-shadow: 0 1px 2px rgb(16 24 40 / 0.04);
}
