#editor :where(.wp-block) {
	max-width: 1280px;
}

.floating-widget {
	position: fixed;
	bottom: 32px;
	right: 32px;

	display: flex;
	flex-direction: column;
	align-items: flex-end;
	z-index: 12;
}

.floating-widget .floating-btn {
	position: relative;
	width: 67px;
	height: 67px;

	background-color: rgba(246, 224, 204, 0.8);
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;
}

.floating-widget .floating-btn:before {
	content: '';
	display: block;
	border-radius: 50%;
	width: 65px;
	height: 65px;
	outline: 2px solid rgba(12, 28, 4, 0.68);
	z-index: 1;
	position: relative;
}

.floating-widget .floating-btn:after {
	content: '';
	display: none;
	clip-path: polygon(75% 0, 0 75%, 100% 100%);
	background-color: #F6E0CC;
	width: 12px;
	height: 12px;

	position: absolute;
	bottom: 5%;
	right: 5%;

	outline: 1px inset red;
}


.floating-widget .floating-panel {
	padding: 5px;
	border-radius: 4px;
	background-color: rgba(135, 146, 135, 0.95);
	position: relative;
	margin-bottom: -16px;
	margin-right: 50%;
	opacity: 0;
	clip-path: polygon(100% 100%, 100% 100%, 100% 100%, 100% 100%);

	transition: all .25s ease-in-out;
	min-width: 115px;
}

.floating-widget .floating-panel.active {
	opacity: 1;
	clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0% 100%);
}

.floating-widget .floating-panel p {
	margin-bottom: 0;
}

.floating-widget .floating-panel p {
	color: #fff;
}

.floating-widget .floating-panel p a {
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: 400;

	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 4px;
}

.floating-widget .floating-panel p a:not(:last-child) {
	margin-bottom: 8px;
}

.floating-widget .floating-panel .floating-heading {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;

	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.floating-widget .floating-panel .floating-heading svg {
	margin: 0 12px 0 7px;
}

.floating-widget .floating-panel .floating-heading:after {
	content: '';
	display: block;

	width: 100%;
	height: 1px;

	background-color: rgba(202, 202, 202, 1);

	margin: 8px 0;
}

.floating-widget .floating-btn img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);
	transform-origin: center;

	width: 32px;
	height: 32px;

	object-fit: contain;
	transition: opacity .25s ease-out;
}

.floating-widget .floating-btn svg {
	position: absolute;
	bottom: 3px;
	right: 3px;
	width: 10px;
	height: 10px;
}

.floating-img-active {
	opacity: 0;
}

.floating-indicator {
	position: absolute;
	right: 100%;
	background-color: rgba(136, 201, 194, 0.75);
	white-space: nowrap;

	padding: 2px 18px;

	font-size: 8px;
	font-weight: 700;
	letter-spacing: calc(0.06 * 8px);
	text-transform: uppercase;
	color: #fff;

	border-radius: 5px;

	position: absolute;
	bottom: 10%;
	right: 70%;

	opacity: 0;

	transition: opacity 1s ease-out;
}

.floating-indicator:after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	clip-path: polygon(0 0, 0 100%, 100% 50%);

	background-color: rgba(136, 201, 194, 0.75);

	position: absolute;
	right: -8px;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 960px) {
	.floating-widget {
		position: fixed;
		bottom: 185px;
		right: 16px;
		height: fit-content;
		z-index: 4;
	}

	.floating-widget .floating-indicator {
		bottom: 1vh;
		right: 55%;
		height: fit-content;
	}

	.floating-widget .floating-btn {
		width: 48px;
		height: 48px;
	}

	.floating-widget .floating-btn svg {
		bottom: -.5px;
		right: -.5px;
	}

	.floating-widget .floating-btn:before {
		width: 48px;
		height: 48px;
	}
}
