.sc-bar {
	position: fixed;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: calc(100% - 32px);
	max-width: 1100px;
	box-sizing: border-box;
	padding: 21px 56px 21px 21px;
	background: #000;
	color: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
	font-family: inherit;
	animation: sc-in .4s ease-out;
}
.sc-bar[hidden] { display: none; }

@keyframes sc-in {
	from { opacity: 0; transform: translate(-50%, 20px); }
	to   { opacity: 1; transform: translate(-50%, 0); }
}

/* Zusammenrollen */
.sc-bar.sc-rolling {
	transform-origin: center bottom;
	overflow: hidden;
	pointer-events: none;
	animation: sc-roll .6s ease-in forwards;
}
@keyframes sc-roll {
	0%   { opacity: 1; transform: translate(-50%, 0) scaleY(1); }
	70%  { opacity: 1; transform: translate(-50%, 0) scaleY(.04); }
	100% { opacity: 0; transform: translate(-50%, 0) scaleY(0); }
}
@media (prefers-reduced-motion: reduce) {
	.sc-bar, .sc-bar.sc-rolling { animation-duration: .01s; }
}

.sc-left { flex: 0 1 auto; min-width: 0; line-height: 0; }
.sc-left a { display: inline-block; }
.sc-image {
	display: block;
	max-height: 112px;
	width: auto;
	max-width: 100%;
	height: auto;
	border-radius: 6px;
}

.sc-right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 0 0 auto;
}
.sc-label {
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: .08em;
	opacity: .8;
}
.sc-timer { display: flex; gap: 18px; }
.sc-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 80px;
}
.sc-num {
	font-size: 56px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	font-variant-numeric: tabular-nums;
}
.sc-cap {
	margin-top: 7px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .06em;
	opacity: .7;
}
.sc-expired { font-size: 38px; font-weight: 700; }
.sc-expired[hidden], .sc-timer[hidden] { display: none; }

.sc-close {
	position: absolute;
	top: 6px;
	right: 8px;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	opacity: .7;
}
.sc-close:hover, .sc-close:focus { opacity: 1; }

@media (max-width: 600px) {
	.sc-bar { gap: 12px; padding: 18px 40px 18px 12px; bottom: 8px; width: calc(100% - 16px); }
	.sc-image { max-height: 77px; }
	.sc-label { display: none; }
	.sc-timer { gap: 6px; }
	.sc-unit { min-width: 44px; }
	.sc-num { font-size: 34px; }
	.sc-cap { font-size: 10px; }
	.sc-expired { font-size: 26px; }
	.sc-hide-mobile { display: none !important; }
}
