.timer_block {
	margin: 15px 0 15px;
	padding: 15px 0px 0px;
	text-transform: uppercase;
	text-align: center;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	color: #333;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}

.timer_block p {
	margin: 0 0 20px;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 1px;
}

.timer_block .timer {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}

.timer_block .timer_item {
	width: 100px;
}

.timer_block .count {
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.timer_block .count span {
	display: block;
	width: 46px;
	height: 64px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 34px;
	line-height: 64px;
	color: #0F130B;
	background: linear-gradient(160deg, #F4C542 0%, #F39A00 100%);
	box-shadow: 0 6px 18px rgba(15, 19, 11, .35), inset 0 1px 4px rgba(255, 255, 255, .35);
	border: 1px solid rgba(244, 197, 66, .55);
}

.timer_block .text {
	margin-top: 2px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .6px;
	text-transform: uppercase;
}


/* Мобільна адаптація */
@media screen and (max-width: 480px) {
	.timer_block {
		padding: 20px 10px;
	}

	.timer_block .timer {
		gap: 30px;
	}

	.timer_block .timer_item {
		width: 80px;
	}

	.timer_block .count span {
		width: 36px;
		height: 50px;
		font-size: 28px;
		line-height: 50px;
	}

	.timer_block p {
		font-size: 18px;
	}

	.timer_block .text {
		font-size: 12px;
	}
}