.d-tmr {
	width: 100%;
	position: fixed;
	bottom: 0;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	border-radius: 15px 15px 0 0;
	font-weight: bold;
	font-size: 1rem;
	color: #fff;
	z-index: 9999999999;

	transform-origin: bottom center;
	transition: opacity 0.4s ease, transform 0.4s ease;
	opacity: 1;
	pointer-events: auto;
}

.d-tmr.hidden {
	opacity: 0;
	transform: scale(0.95);
	pointer-events: none;
}

.d-tmr-flx {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.timer {
	font-weight: bold;
	color: #ff3b30;
	/* красный цвет */
	padding: 5px 8px;
	font-size: 1.1rem;
	min-width: 70px;
	text-align: center;
	user-select: none;
}

.d-tmr-btn {
	padding: 6px 16px;
	background-color: #ff3b30;
	color: #fff;
	border-radius: 14px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
	user-select: none;
	box-shadow: 0 4px 15px rgba(255, 59, 48, 0.6);
	border: none;
	margin-left: 24px;
}

.d-tmr-btn:hover {
	background-color: #ff6659;
}

@media (max-width: 700px) {
	.d-tmr {
		height: auto;
		flex-direction: column;
		padding: 10px 15px;
		border-radius: 15px;
		gap: 10px;
	}

	.d-tmr-flx {
		justify-content: center;
	}

	.d-tmr-btn {
		margin: 0;
		width: 100%;
		max-width: 220px;
		text-align: center;
	}
}