.sgw-mobile-banner-root[hidden] {
	display: none !important;
}

.sgw-mobile-banner-root {
	--sgw-mb-bg: #fffaf1;
	--sgw-mb-title: #173042;
	--sgw-mb-text: #465966;
	--sgw-mb-button: #d71920;
	--sgw-mb-button-text: #fff;
	--sgw-mb-radius: 18px;
	--sgw-mb-bottom: 0px;
	--sgw-mb-title-size: 17px;
	--sgw-mb-text-size: 13px;
	--sgw-mb-button-size: 14px;
	--sgw-mb-button-width: 136px;
	--sgw-mb-button-height: 42px;
	position: fixed;
	z-index: 99990;
	right: 0;
	bottom: calc(var(--sgw-mb-bottom) + env(safe-area-inset-bottom, 0px));
	left: 0;
	display: none;
	box-sizing: border-box;
	padding: 0 8px;
	pointer-events: none;
	opacity: 0;
	transform: translateY(calc(100% + 30px));
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.sgw-mobile-banner-root.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.sgw-mobile-banner {
	position: relative;
	float: none;
	box-sizing: border-box;
	width: min(760px, 100%);
	max-width: 760px;
	margin: 0 auto;
	padding: 0;
	border: 1px solid rgba(23, 48, 66, 0.12);
	border-bottom: 0;
	border-radius: var(--sgw-mb-radius) var(--sgw-mb-radius) 0 0;
	background: var(--sgw-mb-bg);
	background-image: none;
	box-shadow: 0 -7px 28px rgba(23, 48, 66, 0.18);
	color: var(--sgw-mb-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	line-height: normal;
	text-align: left;
	pointer-events: auto;
}

.sgw-mobile-banner *,
.sgw-mobile-banner *::before,
.sgw-mobile-banner *::after {
	box-sizing: border-box;
}

.sgw-mobile-banner-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	box-sizing: border-box;
	min-height: 78px;
	padding: 11px 13px;
}

.sgw-mobile-banner-flag {
	flex: 0 0 auto;
	font-size: 31px;
	line-height: 1;
	filter: drop-shadow(0 2px 2px rgba(23, 48, 66, 0.14));
}

.sgw-mobile-banner-image {
	display: flex;
	flex: 0 0 44px;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	overflow: hidden;
	border-radius: 10px;
}

.sgw-mobile-banner-image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: contain;
}

.sgw-mobile-banner-copy {
	flex: 1 1 0;
	min-width: 140px;
}

.sgw-mobile-banner-title {
	margin: 0 0 3px;
	color: var(--sgw-mb-title);
	font-size: var(--sgw-mb-title-size);
	font-weight: 750;
	line-height: 1.22;
	letter-spacing: -0.01em;
	text-wrap: balance;
}

.sgw-mobile-banner-text {
	color: var(--sgw-mb-text);
	font-size: var(--sgw-mb-text-size);
	font-weight: 450;
	line-height: 1.3;
}

.sgw-mobile-banner-button {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: var(--sgw-mb-button-width);
	min-height: var(--sgw-mb-button-height);
	max-width: 100%;
	margin-left: auto;
	padding: 9px 14px;
	border: 0;
	border-radius: 11px;
	background: var(--sgw-mb-button);
	box-shadow: 0 5px 13px rgba(132, 22, 28, 0.2);
	color: var(--sgw-mb-button-text) !important;
	font-size: var(--sgw-mb-button-size);
	font-weight: 750;
	line-height: 1.18;
	letter-spacing: normal;
	text-align: center;
	text-decoration: none !important;
	text-transform: none;
	transition: filter 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.sgw-mobile-banner-button:hover,
.sgw-mobile-banner-button:active {
	box-shadow: 0 6px 16px rgba(132, 22, 28, 0.27);
	color: var(--sgw-mb-button-text) !important;
	filter: brightness(1.05);
	transform: translateY(-1px);
}

.sgw-mobile-banner-button:focus-visible {
	outline: 3px solid var(--sgw-mb-title);
	outline-offset: 3px;
}

.sgw-mobile-banner-close {
	position: absolute;
	z-index: 2;
	top: -13px;
	right: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	min-width: 30px;
	min-height: 30px;
	max-width: 30px;
	max-height: 30px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(23, 48, 66, 0.17);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 12px rgba(23, 48, 66, 0.2);
	color: #173042;
	cursor: pointer;
	font: inherit;
	line-height: 1;
	-webkit-appearance: none;
	appearance: none;
}

.sgw-mobile-banner-close:hover {
	background: #f7f9fa;
}

.sgw-mobile-banner-close:focus-visible {
	outline: 3px solid #2b78b4;
	outline-offset: 2px;
}

.sgw-mobile-banner-close svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: currentColor;
}

@media (max-width: 430px) {
	.sgw-mobile-banner-root {
		padding: 0 5px;
	}

	.sgw-mobile-banner-inner {
		gap: 8px;
		padding: 10px 10px;
	}

	.sgw-mobile-banner-flag {
		font-size: 28px;
	}

	.sgw-mobile-banner-image {
		flex-basis: 40px;
		width: 40px;
		height: 40px;
	}

	.sgw-mobile-banner-button {
		padding: 8px 10px;
	}
}

@media (max-width: 350px) {
	.sgw-mobile-banner-inner {
		align-items: flex-start;
		flex-wrap: wrap;
		padding-right: 38px;
	}

	.sgw-mobile-banner-copy {
		flex-basis: calc(100% - 42px);
	}

}

@media (prefers-reduced-motion: reduce) {
	.sgw-mobile-banner-root,
	.sgw-mobile-banner-button {
		transition: none;
	}
}
