/* Fixed bookmaker promo bar (порт 100slots .cg-casino-promo-bar) */
.child3-promo-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 85;
	width: 100%;
	padding: 14px 50px 14px 15px;
	background: var(--c3-promo-bar-bg, #102844);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(100%);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	box-sizing: border-box;
}

.child3-promo-bar.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.child3-promo-bar.is-closed {
	display: none !important;
}

.child3-promo-bar__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.child3-promo-bar__close:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.child3-promo-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	gap: 48px;
}

.child3-promo-bar__main {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
	min-width: 0;
}

.child3-promo-bar__logo {
	flex-shrink: 0;
}

.child3-promo-bar__logo img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	border-radius: 50%;
}

.child3-promo-bar__text {
	min-width: 0;
}

.child3-promo-bar__name {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 4px;
}

.child3-promo-bar__bonus {
	font-size: 1rem;
	color: var(--c3-promo-bar-bonus, #feca57);
	font-weight: 700;
	margin: 0;
}

.child3-promo-bar__btn-wrap {
	flex-shrink: 0;
}

.child3-promo-bar__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: var(--c3-promo-bar-btn-bg, #a83238);
	color: var(--c3-promo-bar-btn-color, #fff) !important;
	font-weight: 700;
	font-size: 1rem;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.child3-promo-bar__btn:hover {
	background: var(--c3-promo-bar-btn-hover, #c0454c);
	transform: translateY(-2px);
	color: var(--c3-promo-bar-btn-color, #fff) !important;
}

.child3-promo-bar__btn svg {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

body.child3-promo-bar-visible {
	padding-bottom: 100px;
}

@media (max-width: 768px) {
	.child3-promo-bar {
		padding: 12px 44px 12px 12px;
	}

	.child3-promo-bar__inner {
		gap: 20px;
		max-width: 100%;
	}

	.child3-promo-bar__logo img {
		width: 48px;
		height: 48px;
	}

	.child3-promo-bar__name {
		font-size: 1rem;
	}

	.child3-promo-bar__bonus {
		font-size: 0.9rem;
	}

	.child3-promo-bar__btn {
		padding: 10px 16px;
		font-size: 0.9rem;
	}
}

@media (max-width: 520px) {
	.child3-promo-bar__inner {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.child3-promo-bar__main {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		width: 100%;
	}

	.child3-promo-bar__text {
		text-align: center;
	}

	.child3-promo-bar__btn-wrap {
		display: flex;
		justify-content: center;
		width: 100%;
	}
}
