/* Popup "Agregado al carrito" */

.cart-added-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .45);
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.cart-added-box {
	width: min(86vw, 380px);
	padding: 28px 24px;
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
	text-align: center;
	font-family: inherit;
}

.cart-added-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	margin: 0 auto 18px auto;
	border-radius: 50%;
	background: #18b957;
	color: #fff;
	font-size: 42px;
	font-weight: 800;
	line-height: 1;
}

.cart-added-title {
	margin-bottom: 22px;
	color: #333;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.15;
}

.cart-added-pay,
.cart-added-continue {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 46px;
	border-radius: 999px;
	padding: 0 18px;
	box-sizing: border-box;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
}

.cart-added-pay {
	margin-bottom: 12px;
	background: #0047ff;
	color: #fff;
	border: 2px solid #0047ff;
}

.cart-added-continue {
	background: #fff;
	color: #0047ff;
	border: 2px solid #0047ff;
	cursor: pointer;
}

.cart-added-pay:hover,
.cart-added-continue:hover {
	text-decoration: none;
}
