.sticky-cart {
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0;
	box-shadow: 0 -2px 4px 0 rgba(0,0,0,.16);
	background: #fff;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
	z-index: 99998;
	display: none;
}

.sticky-cart.sc-show {
	display: block;
}

.sc-close {
	background: #000;
	color: #fff;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: absolute;
	bottom: 100%;
	left: 4px;
	font-size: 20px;
	line-height: 1;
}

.sc-purchase,
.sc-section.sc-purchase {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: space-between;
}

.sc-price {
	font-size: 20px;
	font-weight: 700;
	white-space: nowrap;
}

.sc-action .btn {
	white-space: nowrap;
}

.sc-card-product {
	display: flex;
	gap: 16px;
	background: #f7f7f7;
	padding: 16px;
}

.sc-card-title {
	font-size: 16px;
}

.sc-card-price {
	font-size: 16px;
	font-weight: 600;
	margin-top: 4px;
}

.sc-variation {
	margin-bottom: 16px;
}

.sc-variation:last-child {
	margin-bottom: 0;
}

.sc-variation-name {
	text-transform: capitalize;
	font-weight: 600;
	margin-bottom: 4px;
}

.sc-variation select {
	width: 100%;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.4;
	color: #555555;
	background-color: #fff;
	border: 1px solid #ccc;
}

.sc-section {
	margin-top: 16px;
}

.sticky-cart-multi {
	max-height: 80vh;
	overflow-y: auto;
}

body.sc-visible {
	padding-bottom: 72px;
}

@media (min-width: 992px) {
	.sticky-cart {
		display: none !important;
	}

	body.sc-visible {
		padding-bottom: 0;
	}
}

@media (max-width:992px) {
	#podium-bubble {
		bottom: 60px!important;
	}
}