.globaldev-sbgd-popup,
.globaldev-sbgd-popup * {
	box-sizing: border-box;
}

.globaldev-sbgd-popup {
	--globaldev-sbgd-accent: #61ce31;
	--globaldev-sbgd-background: #ffffff;
	--globaldev-sbgd-text: #1d2327;
	--globaldev-sbgd-bottom-offset: 28px;
	position: fixed;
	bottom: var(--globaldev-sbgd-bottom-offset);
	z-index: 999999;
	display: flex;
	align-items: center;
	gap: 12px;
	width: min(420px, calc(100vw - 32px));
	min-height: 92px;
	padding: 12px 40px 12px 12px;
	border: 1px solid rgba(15, 23, 42, 0.09);
	border-left: 5px solid var(--globaldev-sbgd-accent);
	border-radius: 18px;
	background: var(--globaldev-sbgd-background);
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
	color: var(--globaldev-sbgd-text);
	font-family: inherit;
	line-height: 1.35;
	opacity: 0;
	transition: opacity 260ms ease, transform 260ms ease;
	will-change: opacity, transform;
}

.globaldev-sbgd-popup--left {
	left: 22px;
	transform: translateX(calc(-100% - 40px));
}

.globaldev-sbgd-popup--right {
	right: 22px;
	transform: translateX(calc(100% + 40px));
}

.globaldev-sbgd-popup.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.globaldev-sbgd-popup__close {
	-webkit-appearance: none !important;
	appearance: none !important;
	position: absolute;
	top: 9px;
	right: 10px;
	display: block !important;
	flex: 0 0 30px !important;
	width: 30px !important;
	min-width: 30px !important;
	max-width: 30px !important;
	height: 30px !important;
	min-height: 30px !important;
	max-height: 30px !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.12) !important;
	border-radius: 999px !important;
	background: #f6f8fa !important;
	box-shadow: none !important;
	color: var(--globaldev-sbgd-text) !important;
	font-size: 0 !important;
	line-height: 0 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-indent: 0 !important;
	transform: none !important;
	cursor: pointer;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.globaldev-sbgd-popup__close::before,
.globaldev-sbgd-popup__close::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	content: "";
	transform-origin: center;
}

.globaldev-sbgd-popup__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.globaldev-sbgd-popup__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.globaldev-sbgd-popup__close:hover,
.globaldev-sbgd-popup__close:focus-visible {
	border-color: var(--globaldev-sbgd-accent) !important;
	background: var(--globaldev-sbgd-accent) !important;
	box-shadow: 0 5px 14px rgba(15, 23, 42, 0.14) !important;
	color: #ffffff !important;
	outline: none !important;
	transform: scale(1.04) !important;
}

.globaldev-sbgd-popup__close:focus-visible {
	outline: 2px solid var(--globaldev-sbgd-accent) !important;
	outline-offset: 2px !important;
}

.globaldev-sbgd-popup__image {
	flex: 0 0 68px;
	width: 68px;
	height: 68px;
	overflow: hidden;
	border: 3px solid rgba(97, 206, 49, 0.24);
	border: 3px solid color-mix(in srgb, var(--globaldev-sbgd-accent) 25%, #ffffff);
	border-radius: 50%;
	background: #f5f7f9;
}

.globaldev-sbgd-popup__image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
}

.globaldev-sbgd-popup__content {
	min-width: 0;
	flex: 1 1 auto;
}

.globaldev-sbgd-popup__customer {
	margin: 0 0 4px;
	overflow: hidden;
	font-size: 14px;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.globaldev-sbgd-popup__product {
	display: block;
	margin: 0;
	overflow: hidden;
	color: var(--globaldev-sbgd-text);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.globaldev-sbgd-popup__product:hover,
.globaldev-sbgd-popup__product:focus-visible {
	color: var(--globaldev-sbgd-accent);
	text-decoration: underline;
}

.globaldev-sbgd-popup__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 9px;
	font-size: 11px;
	line-height: 1.2;
}

.globaldev-sbgd-popup__time {
	opacity: 0.72;
}

.globaldev-sbgd-popup__branding {
	color: var(--globaldev-sbgd-accent);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

@media (max-width: 782px) {
	.globaldev-sbgd-popup {
		bottom: max(12px, var(--globaldev-sbgd-bottom-offset));
		width: calc(100vw - 24px);
		min-height: 84px;
		padding: 10px 38px 10px 10px;
		border-radius: 15px;
	}

	.globaldev-sbgd-popup--left,
	.globaldev-sbgd-popup--right {
		left: 12px;
		right: auto;
	}

	.globaldev-sbgd-popup__image {
		flex-basis: 60px;
		width: 60px;
		height: 60px;
	}

	.globaldev-sbgd-popup__footer {
		font-size: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.globaldev-sbgd-popup {
		transition: opacity 1ms linear;
	}
}
