.scw-root {
	--scw-red: var(--color-lode-main, #E4281F);
	--scw-red-dark: #B81F17;
	--scw-red-soft: #FFF6DE;
	--scw-ink: var(--color-text-dark, #3C4D57);
	--scw-muted: rgba(60, 77, 87, 0.7);
	--scw-line: var(--color-bg-lightgray, #EBE8E9);
	--scw-green: #1FA84B;
	--scw-white: var(--color-lode-background, #FEFEFE);
	--scw-grey: #B2AEB0;
	--scw-grey-light: #EBE8E9;
	--scw-tint: rgba(60, 77, 87, 0.1);
	--lb-red: var(--scw-red);
	--lb-red-dark: var(--scw-red-dark);
	--lb-red-soft: var(--scw-red-soft);
	--lb-ink: var(--scw-ink);
	--lb-muted: var(--scw-muted);
	--lb-line: var(--scw-line);
	--lb-green: var(--scw-green);
	--lb-grey: var(--scw-grey);
	--lb-grey-light: var(--scw-grey-light);
	--lb-tint: var(--scw-tint);
}

.scw-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.scw-root .lb-widget,
.scw-root .lb-widget * {
	box-sizing: border-box;
}

.lb-pill-wrap {
	position: fixed;
	right: 4px;
	bottom: 4px;
	z-index: 10049;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 62px;
	transition: right 0.35s ease;
	pointer-events: none;
}

.lb-pill-wrap.lb-pill-wrap--with-scroll-top {
	right: calc(4px + 3rem);
}

.lb-orbit {
	position: absolute;
	width: 180px;
	height: 180px;
	top: 50%;
	left: 50%;
	margin-top: -90px;
	margin-left: -90px;
	pointer-events: none;
	animation: scwOrbitSpin 18s linear infinite;
}

.lb-orbit text {
	fill: rgba(228, 40, 31, 0.35);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
}

#lbWidget[data-active="loc"] .lb-orbit,
#lbWidget[data-active="chat"] .lb-orbit {
	opacity: 0;
	transition: opacity 0.3s;
}

@keyframes scwOrbitSpin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.lb-pill {
	display: flex;
	border-radius: 999px;
	overflow: visible;
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.06);
	position: relative;
	pointer-events: auto;
}

.lb-pill-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding: 16px 18px;
	border: none;
	cursor: pointer;
	font-size: 0;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
	background: transparent;
}

.lb-pill-btn svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.lb-pill-btn .lb-pill-label {
	display: none;
}

.lb-pill-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	transition: left 0.5s ease;
	z-index: 0;
}

.lb-pill-btn:hover::after {
	left: 100%;
}

.lb-pill-loc {
	background: var(--lb-red);
	border-radius: 999px 0 0 999px;
}

.lb-pill-loc:hover {
	background: var(--lb-red-dark);
}

.lb-pill-div {
	width: 1px;
	background: rgba(255, 255, 255, 0.3);
	align-self: stretch;
}

.lb-pill-chat {
	background: var(--lb-grey);
	border-radius: 0 999px 999px 0;
}

.lb-pill-chat:hover {
	background: #9A9698;
}

.lb-pill-badge {
	position: absolute;
	top: -22px;
	left: 50%;
	transform: translateX(-80%);
	background: var(--lb-green);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	border-radius: 999px;
	padding: 3px 10px;
	line-height: 1;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(31, 168, 75, 0.4);
	animation: scwBob 3s ease-in-out infinite;
	pointer-events: none;
	white-space: nowrap;
}

@keyframes scwBob {
	0%,
	100% {
		transform: translateX(-80%) translateY(0);
	}

	50% {
		transform: translateX(-80%) translateY(-2px);
	}
}

.lb-pill-unread {
	position: absolute;
	top: -4px;
	right: 10px;
	width: 12px;
	height: 12px;
	background: #FF3B30;
	border: 2px solid #fff;
	border-radius: 50%;
	z-index: 2;
	display: none;
}

.lb-pill-tooltip {
	position: absolute;
	top: -42px;
	background: var(--lb-ink);
	color: #fff;
	padding: 7px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	transform: translateY(6px);
	transition: all 0.2s ease;
	pointer-events: none;
}

.lb-pill-tooltip::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid var(--lb-ink);
}

.lb-pill-btn:hover .lb-pill-tooltip,
.lb-pill-loc:hover .lb-pill-tooltip,
.lb-pill-chat:hover .lb-pill-tooltip {
	opacity: 1;
	transform: translateY(0);
}

#lbWidget[data-active="loc"] .lb-pill-loc {
	filter: brightness(0.85);
}

#lbWidget[data-active="chat"] .lb-pill-chat {
	filter: brightness(0.85);
}

.lb-panel-base {
	position: fixed;
	display: none;
	right: 28px;
	width: 380px;
	max-width: calc(100vw - 32px);
	max-height: calc(100vh - 160px);
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18), 0 8px 20px rgba(0, 0, 0, 0.06);
	z-index: 10052;
	overflow: hidden;
	flex-direction: column;
	transform: translateY(20px) scale(0.94);
	opacity: 0;
	pointer-events: none;
	transform-origin: bottom right;
	transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.22s ease;
}

.lb-panel-base.lb-active {
	transform: translateY(0) scale(1);
	opacity: 1;
	pointer-events: auto;
	display:flex;
}

.lb-panel-base.lb-active .lb-section {
	animation: scwSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.lb-panel-base.lb-active .lb-section:nth-child(1) {
	animation-delay: 0.05s;
}

.lb-panel-base.lb-active .lb-section:nth-child(2) {
	animation-delay: 0.12s;
}

.lb-panel-base.lb-active .lb-section:nth-child(3) {
	animation-delay: 0.19s;
}

.lb-panel-base.lb-active .lb-section:nth-child(4) {
	animation-delay: 0.26s;
}

@keyframes scwSlideIn {
	from {
		opacity: 0;
		transform: translateY(14px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.lb-panel-loc,
.lb-panel-chat {
	bottom: 100px;
}

.lb-head {
	position: relative;
	color: #fff;
	padding: 20px 20px 18px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	overflow: hidden;
}

.lb-head::before,
.lb-head::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	pointer-events: none;
}

.lb-head::before {
	width: 120px;
	height: 120px;
	top: -40px;
	right: -30px;
}

.lb-head::after {
	width: 60px;
	height: 60px;
	top: 30px;
	right: 70px;
}

.lb-head-red {
	background: linear-gradient(135deg, var(--lb-red) 0%, var(--lb-red-dark) 100%);
}

.lb-head-purple {
	background: linear-gradient(135deg, #3C4D57 0%, #2C3942 100%);
}

.lb-head-texts {
	position: relative;
	z-index: 1;
}

.lb-head-t {
	font-size: 16px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
}

.lb-head-t-ic {
	width: 22px;
	height: 22px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 6px;
	display: grid;
	place-items: center;
}

.lb-head-t-ic svg {
	width: 14px;
	height: 14px;
}

.lb-head-sub {
	font-size: 12px;
	opacity: 0.9;
	margin-top: 4px;
}

.lb-close {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: all 0.2s ease;
	position: relative;
	z-index: 1;
}

.lb-close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(90deg);
}

.lb-close svg {
	width: 14px;
	height: 14px;
}

.lb-body {
	overflow-y: auto;
	flex: 1;
	scrollbar-width: thin;
	scrollbar-color: #ddd transparent;
}

.lb-body::-webkit-scrollbar {
	width: 6px;
}

.lb-body::-webkit-scrollbar-thumb {
	background: #ddd;
	border-radius: 3px;
}

.lb-near {
	padding: 16px 20px;
	border-bottom: 1px solid var(--lb-line);
	background: linear-gradient(180deg, #FFFBFB 0%, #fff 100%);
}

.lb-near-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.lb-near-info {
	flex: 1;
}

.lb-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--lb-green);
	margin-top: 6px;
	flex-shrink: 0;
	position: relative;
}

.lb-dot::before {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	background: var(--lb-green);
	opacity: 0.35;
	animation: scwDotPulse 1.8s ease-out infinite;
}

.lb-dot.lb-closed {
	background: var(--lb-muted);
}

.lb-dot.lb-closed::before {
	animation: none;
	opacity: 0;
}

@keyframes scwDotPulse {
	0% {
		transform: scale(0.6);
		opacity: 0.5;
	}

	70% {
		transform: scale(1.6);
		opacity: 0;
	}

	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

.lb-near-status {
	font-size: 13px;
	font-weight: 700;
	color: var(--lb-green);
}

.lb-near-status.lb-closed {
	color: var(--lb-muted);
}

.lb-near-branch {
	font-size: 15px;
	color: var(--lb-ink);
	font-weight: 700;
	margin-top: 3px;
}

.lb-near-meta {
	font-size: 12px;
	color: var(--lb-muted);
	margin-top: 2px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.lb-near-meta svg {
	width: 11px;
	height: 11px;
}

.lb-near-actions {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}

.lb-near-actions a {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 12px;
	border-radius: var(--border-radius-lode-button, 999px);
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	border: 1.5px solid var(--lb-red);
	color: var(--lb-ink);
	background: #fff;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.lb-near-actions a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--lb-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
	z-index: 0;
}

.lb-near-actions a:hover::before {
	transform: scaleX(1);
}

.lb-near-actions a:hover {
	color: #fff;
}

.lb-near-actions a > * {
	position: relative;
	z-index: 1;
}

.lb-near-actions a svg {
	width: 14px;
	height: 14px;
}

.lb-near-actions a.lb-primary {
	background: var(--lb-red);
	color: #fff;
}

.lb-near-actions a.lb-primary::before {
	background: var(--lb-red-dark);
}

.lb-share-btn {
	display: none;
}

.lb-section-t {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lb-muted);
	font-weight: 700;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.lb-chip {
	color: var(--lb-red);
	text-transform: none;
	font-size: 12px;
	background: var(--lb-red-soft);
	padding: 3px 9px;
	border-radius: 999px;
	letter-spacing: 0;
}

.lb-branches {
	padding: 14px 20px;
	border-bottom: 1px solid var(--lb-line);
}

.lb-branch-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.lb-branch-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 12px;
	border-radius: 12px;
	text-decoration: none;
	color: var(--lb-ink);
	transition: background 0.18s ease;
	position: relative;
}

.lb-branch-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 3px;
	height: 0;
	background: var(--lb-red);
	border-radius: 0 2px 2px 0;
	transform: translateY(-50%);
	transition: height 0.2s ease;
}

.lb-branch-item:hover {
	background: var(--lb-red-soft);
	transform: translateX(4px);
}

.lb-branch-item:hover::before {
	height: 60%;
}

.lb-b-addr {
	flex: 1;
}

.lb-b-addr strong {
	display: block;
	font-weight: 700;
	font-size: 13px;
}

.lb-b-addr span {
	font-size: 11px;
	color: var(--lb-muted);
	display: block;
	margin-top: 1px;
}

.lb-b-hours {
	font-size: 11px;
	color: var(--lb-green);
	font-weight: 700;
	white-space: nowrap;
	padding-left: 10px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.lb-b-hours::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--lb-green);
}

.lb-b-hours.lb-closed {
	color: var(--lb-muted);
}

.lb-b-hours.lb-closed::before {
	background: var(--lb-muted);
}

.lb-cities {
	padding: 14px 20px;
	border-bottom: 1px solid var(--lb-line);
}

.lb-city-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.lb-city {
	padding: 10px 6px;
	border: 1.5px solid var(--lb-line);
	border-radius: 999px;
	text-align: center;
	text-decoration: none;
	color: var(--lb-ink);
	font-size: 12px;
	transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
	background: #fff;
	line-height: 14.5px;
}

.lb-city:hover {
	border-color: var(--lb-red);
	color: var(--lb-red);
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(228, 40, 31, 0.15);
}

.lb-city.lb-active {
	background: var(--lb-red-soft);
	border-color: var(--lb-red);
	color: var(--lb-red);
	font-weight: 700;
}

.lb-city strong {
	display: block;
	font-size: 13px;
}

.lb-city small {
	display: block;
	font-size: 10px;
	color: var(--lb-muted);
	margin-top: 2px;
}

.lb-city.lb-active small {
	color: var(--lb-red);
	opacity: 0.75;
}

.lb-directions {
	padding: 14px 20px;
	background: linear-gradient(180deg, var(--lb-grey-light) 0%, #F5F3F3 100%);
}

.lb-dir-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.lb-dir {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	background: var(--lb-tint);
	border-radius: 12px;
	text-decoration: none;
	color: var(--lb-ink);
	transition: all 0.2s ease;
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
}

.lb-dir::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(228, 40, 31, 0.08) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	transition: width 0.4s, height 0.4s;
	border-radius: 50%;
	pointer-events: none;
}

.lb-dir:hover::after {
	width: 200%;
	height: 200%;
}

.lb-dir:hover {
	border-color: var(--lb-red);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.lb-dir-ic {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	z-index: 1;
}

.lb-dir:hover .lb-dir-ic {
	transform: scale(1.08) rotate(-5deg);
}

.lb-dir-ic svg {
	width: 18px;
	height: 18px;
}

.lb-dir-n {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.15;
	position: relative;
	z-index: 1;
}

.lb-dir-d {
	font-size: 10px;
	color: var(--lb-muted);
	margin-top: 2px;
	position: relative;
	z-index: 1;
}

.lb-foot {
	padding: 14px 20px 16px;
	background: #fff;
	display: flex;
	gap: 8px;
	border-top: 1px solid var(--lb-line);
}

.lb-foot a {
	flex: 1;
	padding: 12px;
	text-align: center;
	border-radius: var(--border-radius-lode-button, 999px);
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	line-height: 1;
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
}

.lb-foot a:hover {
	color: var(--color-lode-background);
}

.lb-foot a svg {
	width: 14px;
	height: 14px;
}

.lb-f-primary {
	background: var(--lb-red);
	color: #fff;
	box-shadow: 0 4px 14px rgba(228, 40, 31, 0.35);
}

.lb-f-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s;
}

.lb-f-primary:hover {
	background: var(--lb-red-dark);
	transform: translateY(-1px);
}

.lb-f-primary:hover::before {
	left: 100%;
}

.lb-f-secondary {
	background: #fff;
	color: var(--lb-ink);
	border: 1.5px solid var(--lb-line);
}

.lb-foot a.lb-f-secondary:hover {
  border-color: var(--lb-red);
  color: var(--lb-red);
}

.lb-chat-body {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.lb-chat-intro {
	text-align: center;
	padding: 20px 10px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.lb-chat-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--lb-red-soft);
	display: grid;
	place-items: center;
	margin-bottom: 16px;
}

.lb-chat-avatar svg {
	width: 30px;
	height: 30px;
	color: var(--lb-red);
}

.lb-chat-intro h3 {
	font-size: 16px;
	margin-bottom: 6px;
	color: var(--lb-ink);
}

.lb-chat-intro p {
	font-size: 13px;
	color: var(--lb-muted);
	line-height: 1.5;
	margin-bottom: 16px;
}

.lb-chat-open {
	background: var(--lb-red);
	color: #fff;
	border: none;
	border-radius: var(--border-radius-lode-button, 999px);
	padding: 12px 24px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
}

.lb-chat-open:hover {
	background: var(--lb-red-dark);
}

.lb-chat-departments {
	margin-top: 20px;
	width: 100%;
}

.lb-chat-dept-t {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--lb-muted);
	font-weight: 700;
	margin-bottom: 10px;
	text-align: left;
}

.lb-chat-dept {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid var(--lb-line);
	border-radius: 12px;
	margin-bottom: 6px;
	cursor: pointer;
	text-decoration: none;
	color: var(--lb-ink);
	transition: all 0.18s ease;
	background: #fff;
}

.lb-chat-dept:hover {
	border-color: var(--lb-red);
	background: var(--lb-red-soft);
	transform: translateX(4px);
}

.lb-chat-dept-ic {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--lb-red);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.5px;
}

.lb-chat-dept-name {
	font-size: 14px;
	font-weight: 700;
}

.lb-chat-dept-sub {
	font-size: 11px;
	color: var(--lb-muted);
	margin-top: 1px;
}

.lb-chat-foot {
	padding: 14px 20px;
	border-top: 1px solid var(--lb-line);
	text-align: center;
	font-size: 11px;
	color: var(--lb-muted);
}

.lb-chat-foot a {
	color: var(--lb-muted);
	text-decoration: none;
}

@media only screen and (max-width: 767px) {
	.lb-panel-base {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		max-width: none;
		max-height: 86%;
		background: #fff;
		border-radius: 22px 22px 0 0;
		box-shadow:
			0 -20px 60px rgba(0, 0, 0, 0.18),
			0 -8px 20px rgba(0, 0, 0, 0.06);
		z-index: 10052;
		overflow: hidden;
		display: flex;
		flex-direction: column;
		transform: translateY(100%);
		opacity: 1;
		pointer-events: none;
		transform-origin: bottom center;
		transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
	}

	.lb-panel-base.lb-active {
		transform: translateY(0);
	}

	.lb-body {
		-webkit-overflow-scrolling: touch;
	}

	.lb-foot {
		padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
	}

	.lb-pill-wrap {
		right: 8px;
		bottom: 8px;
		padding: 10px;
	}

	.lb-pill-btn {
		padding: 14px 14px;
	}

	.lb-orbit {
		display: none;
	}

	.lb-near-actions {
		display: grid;
		grid-template-columns: 1fr 1fr 44px;
	}

	.lb-share-btn {
		display: grid;
		place-items: center;
		width: 44px;
		height: 44px;
		border-radius: 999px;
		border: 1.5px solid var(--lb-line);
		background: #fff;
		color: var(--lb-ink);
		cursor: pointer;
		transition: all 0.2s ease;
		padding: 0;
		font-family: inherit;
	}

	.lb-share-btn:active {
		background: var(--lb-grey-light);
		transform: scale(0.94);
		border-color: var(--lb-red);
	}

	.lb-share-btn svg {
		width: 16px;
		height: 16px;
	}

	.lb-toast {
		display: none;
		align-items: center;
		gap: 8px;
		position: fixed;
		left: 50%;
		bottom: calc(4.625rem + env(safe-area-inset-bottom, 0px) + 16px);
		transform: translateX(-50%) translateY(20px);
		background: rgba(20, 20, 24, 0.94);
		color: #fff;
		font-size: 13px;
		font-weight: 500;
		padding: 10px 16px;
		border-radius: 24px;
		z-index: 10053;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
		white-space: nowrap;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	}

	.lb-toast.lb-active {
		display: flex;
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}

	.lb-toast svg {
		width: 14px;
		height: 14px;
		color: #1FA84B;
		flex-shrink: 0;
	}
}

@media only screen and (prefers-reduced-motion: reduce) {

	.lb-orbit,
	.lb-dot::before,
	.lb-pill-badge {
		animation: none !important;
	}

	.lb-panel-base.lb-active .lb-section {
		animation: none !important;
	}

	.lb-panel-base {
		transition-duration: 0.05s !important;
	}
}

@media only screen and (max-width: 767px) {
	.rework-static-menu-footer-mobile--dock {
		align-items: flex-end;
		padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
		overflow: visible;
	}

	.rework-static-menu-footer-mobile--dock .rework-static-menu-footer-mobile-item--fab {
		position: relative;
		z-index: 2;
		overflow: visible;
	}

	.scw-dock-fab {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		position: relative;
		background: transparent;
		border: none;
		font-family: inherit;
		cursor: pointer;
		padding: 0;
		margin-top: -1.25rem;
		z-index: 2;
		width: 100%;
		min-width: 0;
		color: inherit;
	}

	.scw-dock-fab-btn {
		width: 3.25rem;
		height: 3.25rem;
		border-radius: 50%;
		background: linear-gradient(160deg, #F7423A 0%, var(--color-lode-main) 50%, #C42B23 100%);
		color: #fff;
		display: grid;
		place-items: center;
		box-shadow:
			0 0 0 4px #fff,
			0 6px 16px rgba(238, 51, 41, 0.38),
			0 2px 6px rgba(0, 0, 0, 0.1);
		position: relative;
		transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.scw-dock-fab:active .scw-dock-fab-btn {
		transform: scale(0.94);
	}

	.scw-dock-fab-btn svg {
		width: 1.375rem;
		height: 1.375rem;
	}

	.scw-dock-fab-pulse {
		position: absolute;
		top: 0;
		right: 0;
		width: 0.875rem;
		height: 0.875rem;
		border-radius: 50%;
		background: #1FA84B;
		border: 3px solid #fff;
		z-index: 2;
	}

	.scw-dock-fab-pulse::before {
		content: '';
		position: absolute;
		inset: -2px;
		border-radius: 50%;
		background: #1FA84B;
		opacity: 0.5;
		animation: scwDockFabDotPulse 1.8s ease-out infinite;
	}

	@keyframes scwDockFabDotPulse {
		0% {
			transform: scale(0.7);
			opacity: 0.6;
		}

		70% {
			transform: scale(1.6);
			opacity: 0;
		}

		100% {
			transform: scale(1.6);
			opacity: 0;
		}
	}

	.scw-dock-fab-pulse.is-closed {
		background: rgba(60, 77, 87, 0.7);
	}

	.scw-dock-fab-pulse.is-closed::before {
		animation: none;
		opacity: 0;
	}

	.scw-dock-fab-btn::after {
		content: '';
		position: absolute;
		inset: -5px;
		border-radius: 50%;
		border: 2px solid var(--color-lode-main);
		opacity: 0;
		animation: scwDockFabPulse 2.8s ease-out infinite;
		pointer-events: none;
	}

	@keyframes scwDockFabPulse {
		0% {
			transform: scale(1);
			opacity: 0.45;
		}

		100% {
			transform: scale(1.45);
			opacity: 0;
		}
	}

	.scw-dock-fab-label {
		font-size: 0.65625rem;
		color: var(--color-lode-main);
		font-weight: 700;
		margin-top: 0.25rem;
		letter-spacing: -0.01em;
		white-space: nowrap;
		line-height: 1.2;
	}

	.scw-root .lb-pill-wrap {
		display: none !important;
	}
}

@media only screen and (max-width: 767px) and (prefers-reduced-motion: reduce) {
	.scw-dock-fab-pulse::before,
	.scw-dock-fab-btn::after {
		animation: none !important;
	}
}
