.bbl-floating-root {
	position: fixed;
	z-index: 9998;
}

.bbl-floating-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.28s ease, visibility 0.28s ease;
	z-index: 9998;
}

.bbl-floating-backdrop.is-open {
	opacity: 1;
	visibility: visible;
}

.bbl-floating-bth {
	position: fixed;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #f7372e;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 0 9px 5px rgba(247, 55, 46, 0.44);
	transition: transform 0.2s ease;
	z-index: 9999;
	overflow: hidden;
}

.bbl-floating-bth:hover {
	transform: translateY(-1px) scale(1.03);
}

.bbl-floating-bth img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

.bbl-floating-window {
	position: fixed;
	top: auto;
	bottom: auto;
	right: 0;
	width: min(420px, 100vw);
	max-height: 85vh;
	background: #fff;
	box-shadow: -10px 0 28px rgba(0, 0, 0, 0.18);
	transform: translateX(100%);
	opacity: 0;
	visibility: hidden;
	transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
	z-index: 10000;
}

.bbl-floating-window.bbl-floating-window--attach-top {
	top: 24px;
	border-radius: 0 0 0 18px;
}

.bbl-floating-window.bbl-floating-window--attach-bottom {
	bottom: 0;
	border-radius: 18px 0 0 0;
}

.bbl-floating-window.is-open {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.bbl-floating-window__close {
	position: absolute;
	top: 12px;
	right: 12px;
	border: 0;
	background: transparent;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	color: #fff;
}

.bbl-floating-window__content {
	height: 100%;
	max-height: 85vh;
	padding: 48px 18px 18px;
	overflow-y: auto;
}
