.promo-info-bubble {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 1px solid #a8b2bc;
	border-radius: 50%;
	background: #fff;
	color: #4f5964;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	cursor: help;
	vertical-align: middle;
	flex: 0 0 22px;
}

.promo-info-tooltip {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	display: none;

	width: 280px;
	max-width: calc(100vw - 24px);
	padding: 10px 12px;
	box-sizing: border-box;
	border-radius: 8px;
	background: #1f2933;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
	text-align: left;
	white-space: normal;
	overflow-wrap: break-word;
	word-break: break-word;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.promo-info-bubble:hover .promo-info-tooltip,
.promo-info-bubble:focus .promo-info-tooltip,
.promo-info-bubble:focus-within .promo-info-tooltip {
	display: block;
}

.promo-action-notice .notice__item {
	background: #f6f8fb;
}

.promo-action-notice .notice__text {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	flex-wrap: wrap;
}

.promo-action-title {
	font-size: 14px;
	line-height: 1.35;
}

@media (max-width: 767px) {
	.promo-info-tooltip {
		position: fixed;
		left: 12px;
		right: 12px;
		top: auto;
		bottom: 12px;
		width: auto;
		max-width: none;
		transform: none;
	}
}