.rhrd-delay-box,
.rhrd-delay-box * {
	box-sizing: border-box;
}

.rhrd-delay-box {
	width: 100%;
	max-width: 100%;
	margin: 28px 0;
	clear: both;
	font-family: inherit;
}

.rhrd-delay-inner {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	padding: 22px;
	border: 1px solid rgba(15, 23, 42, .10);
	border-radius: 18px;
	background: var(--rhrd-bg, #fff);
	box-shadow: 0 16px 34px rgba(15, 23, 42, .07);
	text-align: left;
}

.rhrd-delay-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--rhrd-accent, #e11d48);
}

.rhrd-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--rhrd-accent, #e11d48);
}

.rhrd-label::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: currentColor;
}

.rhrd-delay-inner h2 {
	margin: 0 0 8px !important;
	padding: 0 !important;
	font-size: clamp(20px, 3.2vw, 26px);
	font-weight: 800;
	line-height: 1.25;
	color: #0f172a;
}

.rhrd-delay-inner p {
	margin: 0 0 16px !important;
	padding: 0 !important;
	font-size: 15px;
	line-height: 1.65;
	color: #475569;
}

.rhrd-countdown {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	color: #334155;
}

.rhrd-progress {
	height: 7px;
	margin: 0 0 16px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(148, 163, 184, .24);
}

.rhrd-progress span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: var(--rhrd-accent, #e11d48);
	transition: width .25s ease;
}

.rhrd-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	max-width: 100%;
	padding: 0 18px;
	border: 0;
	border-radius: 999px;
	background: #e2e8f0;
	color: #64748b;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none !important;
	cursor: not-allowed;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.rhrd-button.is-ready {
	background: var(--rhrd-accent, #e11d48);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 12px 24px rgba(15, 23, 42, .16);
}

.rhrd-button.is-ready:hover,
.rhrd-button.is-ready:focus {
	transform: translateY(-1px);
}

.rhrd-hidden-content[hidden] {
	display: none !important;
}

.rhrd-hidden-content.rhrd-revealed {
	display: block;
	animation: rhrdFadeIn .24s ease both;
}

.rhrd-opened {
	display: none;
}

@keyframes rhrdFadeIn {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 782px) {
	.rhrd-delay-box {
		margin: 22px 0;
	}

	.rhrd-delay-inner {
		padding: 18px;
		border-radius: 16px;
		box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
	}

	.rhrd-delay-inner h2 {
		font-size: 21px;
	}

	.rhrd-delay-inner p,
	.rhrd-countdown {
		font-size: 14px;
	}

	.rhrd-button {
		width: 100%;
		min-height: 44px;
	}
}
