.sg-r-header__bonuses {
	display: grid;
	align-items: center;
	grid-template-columns: 64px 1fr auto;
	grid-gap: 24px;
	padding: 12px 24px 12px 12px;
	border: 1px dashed var(--thunderbird-500);
	border-radius: 24px;
}

.sg-r-header__bonuses.bonus-not {
	color: var(--mirage-600);
	border-color: var(--mirage-800);
}

.sg-r-header__bonus-ico {
	max-width: 100%;
	height: auto;
}

.sg-r-header__bonus-text {
	font-size: 17px;
	font-weight: 500;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
}

.sg-r-header__bonus-text .copy-code {
	font-size: 17px;
	font-weight: 600;
}

.sg-r-header__bonus-text .copy-code::before {
	content: none;
}

.sg-r-header__bonus-btn {
	display: flex;
	align-items: center;
	gap: 24px;
}

.sg-r-header__bonus-btn .zp-btn {
	position: relative;
	height: 48px;
	padding: 0 24px;
	font-size: 16px;
}

.sg-r-header__bonus-btn .zp-btn.promocode-action {
	order: -1;
}

.sg-r-header__bonus-btn .zp-btn.promocode-action::after {
	content: '';
	position: absolute;
	top: 25px;
	right: -12px;
	width: 32px;
	height: 32px;
	background-image: url(../images/svg/cursor-bg.svg);
	background-size: 32px;
}

.sg-r-header__bonus-transfer:empty {
	display: none;
}

.sg-r-header__bonus-transfer:not(:empty) ~ .promocode-action {
	background: none;
	color: var(--thunderbird-500);
	border: 1px solid var(--thunderbird-500);
	font-weight: 400;
}

.sg-r-header__bonus-transfer:not(:empty) ~ .promocode-action:hover {
	background: var(--thunderbird-700);
	color: var(--white);
}

@media (max-width: 991px) {
	.sg-r-header__bonuses {
		margin-top: 12px;
	}
}

@media (max-width: 576px) {
	.sg-r-header__bonuses .sg-r-header__bonus-transfer {
		display: none;
	}

	.sg-r-header__under-bonus-transfer .zp-btn {
		width: 100%;
		height: 48px;
		font-size: 16px;
	}

	.sg-r-header__bonuses {
		position: relative;
		grid-template-columns: 48px 1fr auto;
		grid-column-gap: 12px;
		grid-row-gap: 16px;
		padding: 12px;
		border-radius: 12px;
		order: 0;
	}

	.sg-r-header__bonus-text > span {
		position: absolute;
		left: 12px;
		bottom: 12px;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 10px;
		width: calc(100% - 147px);
		height: 48px;
	}

	.sg-r-header__bonus-btn {
		grid-column: 1 / 4;
		justify-content: flex-end;
	}
}

@media (min-width: 577px) {
	.sg-r-header__under-bonus-transfer {
		display: none;
	}
}